Bump node from 22.13 to 22.14 ()

This commit is contained in:
dependabot[bot] 2025-02-14 07:58:21 +00:00 committed by GitHub
parent d8f3ad04f4
commit 08d1a3ba61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 13 additions and 8 deletions
.github/workflows
scripts
{{cookiecutter.project_slug}}
compose
local/node
production/django
package.json

View File

@ -21,9 +21,13 @@ jobs:
strategy:
fail-fast: false
matrix:
script:
- scripts/ruff_version.py
- scripts/node_version.py
job:
- script: scripts/ruff_version.py
name: Ruff
- script: scripts/node_version.py
name: Node
name: "${{ matrix.job.name }} versions"
steps:
- name: Checkout with token
uses: actions/checkout@v4
@ -40,7 +44,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
- run: uv run ${{ matrix.script }}
- run: uv run ${{ matrix.job.script }}
- uses: stefanzweifel/git-auto-commit-action@v5
with:

View File

@ -103,6 +103,6 @@ jobs:
run: uv sync
- uses: actions/setup-node@v4
with:
node-version: "22.13"
node-version: "22.14"
- name: Bare Metal ${{ matrix.script.name }}
run: sh tests/test_bare.sh ${{ matrix.script.args }}

View File

@ -18,6 +18,7 @@ def main() -> None:
if old_version != new_version:
update_package_json_version(old_version, new_version)
update_ci_node_version(old_version, new_version)
update_production_node_version(old_version, new_version)
def get_version_from_dockerfile() -> str | None:

View File

@ -1,4 +1,4 @@
FROM docker.io/node:22.13-bookworm-slim
FROM docker.io/node:22.14-bookworm-slim
WORKDIR /app

View File

@ -1,5 +1,5 @@
{% if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] -%}
FROM docker.io/node:22.13-bookworm-slim AS client-builder
FROM docker.io/node:22.14-bookworm-slim AS client-builder
ARG APP_HOME=/app
WORKDIR ${APP_HOME}

View File

@ -35,7 +35,7 @@
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "22.13"
"node": "22.14"
},
"browserslist": [
"last 2 versions"