Skip to content

Commit

Permalink
chore(deps): update dependency node to v22.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 3, 2024
1 parent 6fdf511 commit 4fb7234
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 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:22.3.0 AS build-stage
FROM node:22.4.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:22.3.0 AS production-stage
FROM node:22.4.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 @@ -107,7 +107,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.0'

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

- uses: actions/setup-node@v4
with:
node-version: '22.3.0'
node-version: '22.4.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 @@
22.3.0
22.4.0
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
frontend:
image: node:22.3.0
image: node:22.4.0
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -91,7 +91,7 @@ services:
- VARNISH_HTTP_PORT=8080

pdf:
image: node:22.3.0
image: node:22.4.0
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -110,7 +110,7 @@ services:
- CI=${CI}

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

translation:
image: node:22.3.0
image: node:22.4.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 @@ -6,7 +6,7 @@
],
"force": {
"constraints": {
"node": "22.3.0",
"node": "22.4.0",
"php": "8.3.7"
}
},
Expand Down

0 comments on commit 4fb7234

Please sign in to comment.