diff --git a/.github/actions/percy-snapshot/action.yml b/.github/actions/percy-snapshot/action.yml index 8142dc271..704928f40 100644 --- a/.github/actions/percy-snapshot/action.yml +++ b/.github/actions/percy-snapshot/action.yml @@ -34,7 +34,7 @@ runs: - name: Install NodeJS uses: actions/setup-node@v6.0.0 with: - node-version: 20 + node-version: 24 - name: Install dependencies shell: bash diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index db285b97b..7637f6370 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: - node-version: 18 + node-version: 24 - run: yarn install - run: yarn build - run: yarn test diff --git a/.github/workflows/publish-on-release.yml b/.github/workflows/publish-on-release.yml index f3f855bec..925b74f14 100644 --- a/.github/workflows/publish-on-release.yml +++ b/.github/workflows/publish-on-release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: - node-version: 18 + node-version: 24 - name: Read Vanilla version from package.json run: | node -p "require('./package.json').version" > VANILLA_VERSION diff --git a/Dockerfile b/Dockerfile index 580115033..42c5d618f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV PATH="/venv/bin:${PATH}" RUN --mount=type=cache,target=/root/.cache/pip pip3 install --requirement /tmp/requirements.txt # Build stage: Install yarn dependencies # === -FROM node:22 AS yarn-dependencies +FROM node:24 AS yarn-dependencies WORKDIR /srv ADD package.json package.json ADD yarn.lock yarn.lock