Skip to content

Commit 0d55942

Browse files
fix(deps): update all dependencies
1 parent 298d047 commit 0d55942

File tree

5 files changed

+2351
-1869
lines changed

5 files changed

+2351
-1869
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
checkout:
55
working_directory: ~/nest-boilerplate
66
docker:
7-
- image: cimg/node:20.17-browsers
7+
- image: cimg/node:22.20-browsers
88
steps:
99
- checkout
1010
- save_cache:
@@ -14,7 +14,7 @@ jobs:
1414
dependencies:
1515
working_directory: ~/nest-boilerplate
1616
docker:
17-
- image: cimg/node:20.17-browsers
17+
- image: cimg/node:22.20-browsers
1818
steps:
1919
- restore_cache:
2020
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
@@ -30,7 +30,7 @@ jobs:
3030
lint:
3131
working_directory: ~/nest-boilerplate
3232
docker:
33-
- image: cimg/node:20.17-browsers
33+
- image: cimg/node:22.20-browsers
3434
steps:
3535
- restore_cache:
3636
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
@@ -45,8 +45,8 @@ jobs:
4545
test:
4646
working_directory: ~/nest-boilerplate
4747
docker:
48-
- image: cimg/node:20.17-browsers
49-
- image: cimg/postgres:16.9
48+
- image: cimg/node:22.20-browsers
49+
- image: cimg/postgres:18.0
5050
environment:
5151
POSTGRES_HOST: localhost
5252
POSTGRES_PORT: 5432
@@ -73,7 +73,7 @@ jobs:
7373
build:
7474
working_directory: ~/nest-boilerplate
7575
docker:
76-
- image: cimg/node:20.17-browsers
76+
- image: cimg/node:22.20-browsers
7777
steps:
7878
- restore_cache:
7979
key: v0-repo-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
restore-keys: |
2727
${{ runner.os }}-node-${{ matrix.node }}
2828
- name: Use Node.js
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: ${{ matrix.node }}
3232
- name: Install dependencies

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
postgres:
33
container_name: postgres_container
4-
image: postgres:16.10-alpine3.22
4+
image: postgres:18.0-alpine3.22
55
environment:
66
POSTGRES_USER: ${POSTGRES_USER:-postgres}
77
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
@@ -17,7 +17,7 @@ services:
1717

1818
pgadmin:
1919
container_name: pgadmin_container
20-
image: dpage/pgadmin4:8.14
20+
image: dpage/pgadmin4:9.8
2121
environment:
2222
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:[email protected]}
2323
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}

0 commit comments

Comments
 (0)