Skip to content

Commit

Permalink
chore(deps): update dependency node
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 9, 2024
1 parent 12dc935 commit 560d78b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions {{cookiecutter.project_slug}}/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variables:

# Test if static assets can be built successfully.
static:
image: node:22.4-bookworm-slim
image: node:22.11-bookworm-slim
stage: build
script:
- npm ci --no-optional --no-audit --progress=false
Expand Down Expand Up @@ -82,23 +82,23 @@ djlint:

stylelint:
stage: lint
image: node:22.4-bookworm-slim
image: node:22.11-bookworm-slim
dependencies:
- static
script:
- npm run lint:style

eslint:
stage: lint
image: node:22.4-bookworm-slim
image: node:22.11-bookworm-slim
dependencies:
- static
script:
- npm run lint:js

prettier:
stage: lint
image: node:22.4-bookworm-slim
image: node:22.11-bookworm-slim
dependencies:
- static
script:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.4
22.11
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# use node:22.4-bookworm as the base image for building the frontend
#################################################################################

FROM node:22.4-bookworm AS frontend-builder
FROM node:22.11-bookworm AS frontend-builder

# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
Expand Down

0 comments on commit 560d78b

Please sign in to comment.