mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-29 16:24:50 +03:00
Bump node from 24.6-bookworm-slim to 24.7-bookworm-slim in /{{cookiecutter.project_slug}}/compose/local/node (#5997)
* Bump node in /{{cookiecutter.project_slug}}/compose/local/node Bumps node from 24.6-bookworm-slim to 24.7-bookworm-slim. --- updated-dependencies: - dependency-name: node dependency-version: 24.7-bookworm-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Trigger align versions if PR author is pyup or dependabot * Align versions --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Alla <alla.brunoo@gmail.com> Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com>
This commit is contained in:
parent
2be30d9886
commit
b1942c091e
2
.github/workflows/align-versions.yml
vendored
2
.github/workflows/align-versions.yml
vendored
|
@ -14,7 +14,7 @@ permissions:
|
|||
|
||||
jobs:
|
||||
run:
|
||||
if: ${{ github.event_name == 'workflow_dispatch' || github.actor == 'pyup-bot' || github.actor == 'dependabot[bot]' }}
|
||||
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' && (github.event.pull_request.user.login == 'pyup-bot' || github.event.pull_request.user.login == 'dependabot[bot]') }}
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GH_PAT: ${{ secrets.GH_PAT }}
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -103,6 +103,6 @@ jobs:
|
|||
run: uv sync
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "24.6"
|
||||
node-version: "24.7"
|
||||
- name: Bare Metal ${{ matrix.script.name }}
|
||||
run: sh tests/test_bare.sh ${{ matrix.script.args }}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM docker.io/node:24.6-bookworm-slim
|
||||
FROM docker.io/node:24.7-bookworm-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] -%}
|
||||
FROM docker.io/node:24.6-bookworm-slim AS client-builder
|
||||
FROM docker.io/node:24.7-bookworm-slim AS client-builder
|
||||
|
||||
ARG APP_HOME=/app
|
||||
WORKDIR ${APP_HOME}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"webpack-merge": "^6.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "24.6"
|
||||
"node": "24.7"
|
||||
},
|
||||
"browserslist": [
|
||||
"last 2 versions"
|
||||
|
|
Loading…
Reference in New Issue
Block a user