Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.15.1 AS build-stage
FROM node:22.16.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.15.1 AS production-stage
FROM node:22.16.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 @@ -124,7 +124,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -396,7 +396,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '22.15.1'
node-version: '22.16.0'

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.15.1
22.16.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 @@ -19,7 +19,7 @@
"@eslint/compat": "1.2.9",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.27.0",
"@types/node": "22.15.20",
"@types/node": "22.15.21",
"eslint": "9.27.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-n": "17.18.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
remove-old-indexes:
image: node:22.15.1
image: node:22.16.0
volumes:
- ./src:/src
command:
Expand Down
2 changes: 1 addition & 1 deletion .ops/ecamp3-logging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ elasticsearch:
storage: ${ELASTIC_NODE_STORAGE_SIZE}
removeOldIndexes:
maxIndexAge: ${ELASTIC_NODE_MAX_INDEX_AGE}
image: node:22.15.1
image: node:22.16.0

kibana:
name: kibana
Expand Down
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.15.1
image: node:22.16.0
container_name: 'ecamp3-frontend'
ports:
- '9229:9229' # jest debug
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
command: varnishncsa

pdf:
image: node:22.15.1
image: node:22.16.0
container_name: 'ecamp3-pdf'
stdin_open: true
tty: true
Expand All @@ -98,7 +98,7 @@ services:
- CI=${CI}

print:
image: node:22.15.1
image: node:22.16.0
container_name: 'ecamp3-print'
user: ${USER_ID:-1000}
volumes:
Expand Down Expand Up @@ -210,7 +210,7 @@ services:
protocol: tcp

translation:
image: node:22.15.1
image: node:22.16.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 @@
":prConcurrentLimitNone"
],
"constraints": {
"node": "22.15.1",
"node": "22.16.0",
"php": "8.4.7"
},
"automergeType": "branch",
Expand Down
Loading