Skip to content

Commit

Permalink
fix(deps): update major
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 8, 2023
1 parent bb3afbd commit b20ec62
Show file tree
Hide file tree
Showing 7 changed files with 217 additions and 115 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: gitleaks-action
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: '**/node_modules'
Expand All @@ -47,7 +47,7 @@ jobs:
timeout-minutes: 10
services:
database:
image: mongo:6.0.7-jammy
image: mongo:7.0.1-jammy
env:
MONGO_INITDB_ROOT_USERNAME: acid
MONGO_INITDB_ROOT_PASSWORD: password
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
shard: [1]
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: '**/node_modules'
Expand All @@ -103,13 +103,13 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build and push docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4.2.0
with:
context: .
file: ./docker/Dockerfile
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: '**/node_modules'
Expand All @@ -52,7 +52,7 @@ jobs:
timeout-minutes: 10
services:
database:
image: mongo:6.0.7-jammy
image: mongo:7.0.1-jammy
env:
MONGO_INITDB_ROOT_USERNAME: acid
MONGO_INITDB_ROOT_PASSWORD: password
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
shard: [1]
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: '**/node_modules'
Expand All @@ -108,13 +108,13 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Build and push docker image
uses: docker/build-push-action@v2.10.0
uses: docker/build-push-action@v4.2.0
with:
context: .
file: ./docker/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:
- postgres:14.8-alpine
- postgres:15.4-alpine

variables:
POSTGRES_DB: develop
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
db:
image: mongo:6.0.7-jammy
image: mongo:7.0.1-jammy
environment:
MONGO_INITDB_ROOT_USERNAME: acid
MONGO_INITDB_ROOT_PASSWORD: password
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
"yarn": "~1.22.19"
},
"dependencies": {
"@nestjs/axios": "2.0.0",
"@nestjs/common": "9.4.3",
"@nestjs/core": "9.4.3",
"@nestjs/platform-express": "9.4.3",
"@nestjs/swagger": "6.3.0",
"@nestjs/terminus": "9.2.2",
"@nestjs/axios": "3.0.0",
"@nestjs/common": "10.2.4",
"@nestjs/core": "10.2.4",
"@nestjs/platform-express": "10.2.4",
"@nestjs/swagger": "7.1.10",
"@nestjs/terminus": "10.0.1",
"@swc/core": "1.3.68",
"@swc/jest": "0.2.26",
"amqplib": "0.10.3",
Expand All @@ -52,15 +52,15 @@
"express": "4.18.2",
"jsonwebtoken": "9.0.1",
"leaked-handles": "5.2.0",
"mongodb": "^5.3.0",
"mongodb": "^6.0.0",
"morgan": "1.10.0",
"nestjs-pino": "3.3.0",
"pg": "^8.10.0",
"pino-http": "8.3.3",
"reflect-metadata": "^0.1.13",
"rimraf": "4.4.1",
"rimraf": "5.0.1",
"rxjs": "7.8.1",
"swagger-ui-express": "4.6.3",
"swagger-ui-express": "5.0.0",
"uuid": "9.0.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit b20ec62

Please sign in to comment.