diff --git a/.github/workflows/transition.yml b/.github/workflows/transition.yml index bcf19640..945a7508 100644 --- a/.github/workflows/transition.yml +++ b/.github/workflows/transition.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x] + node-version: [22.x] env: PROJECT_CONFIG: ${{ github.workspace }}/examples/config.js steps: diff --git a/Dockerfile b/Dockerfile index c4be45fd..e650c8af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN cargo build # Build Node app -FROM node:20-bookworm +FROM node:22-bookworm WORKDIR /app # Install all the json package dependencies in an intermediary image. To do so, we copy each package.json files # and run yarn install which will download all the listed packages in the image.