Skip to content

Commit

Permalink
chore(deps): update dependency node to v20.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 8, 2024
1 parent 2b70bfa commit 644f526
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .docker-hub/print/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:20.12.2 AS build-stage
FROM node:20.13.0 AS build-stage
ARG SENTRY_AUTH_TOKEN
ARG SENTRY_ORG
ARG SENTRY_PRINT_PROJECT
Expand All @@ -22,7 +22,7 @@ COPY print .
RUN npm run build

# production stage
FROM node:20.12.2 AS production-stage
FROM node:20.13.0 AS production-stage
WORKDIR /app

COPY --from=build-stage /app/.output ./.output
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.12.2'
node-version: '20.13.0'

- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.12.2
20.13.0
8 changes: 4 additions & 4 deletions .ops/aws-setup/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .ops/aws-setup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"devDependencies": {
"@babel/eslint-parser": "7.24.5",
"@types/node": "20.12.8",
"@types/node": "20.12.11",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.9'

services:
frontend:
image: node:20.12.2
image: node:20.13.0
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -94,7 +94,7 @@ services:
- ./api/public:/srv/api/public:ro

pdf:
image: node:20.12.2
image: node:20.13.0
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -113,7 +113,7 @@ services:
- CI=${CI}

print:
image: node:20.12.2
image: node:20.13.0
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -192,7 +192,7 @@ services:
working_dir: /e2e

translation:
image: node:20.12.2
image: node:20.13.0
profiles: ['translation']
container_name: 'ecamp3-translation'
volumes:
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
],
"force": {
"constraints": {
"node": "20.12.2",
"node": "20.13.0",
"php": "8.3.6"
}
},
Expand Down

0 comments on commit 644f526

Please sign in to comment.