diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 011935ba6..c9dff1295 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -22,7 +22,7 @@ jobs: - if: ${{ github.ref_name == 'main' }} uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' - if: ${{ github.ref_name == 'main' }} run: yarn --immutable @@ -46,7 +46,7 @@ jobs: # This a bit of a workaround, but it shouldn't be a problem, as yarn loads the dependencies in all formats needed - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' - run: | yarn config set nodeLinker pnp @@ -104,7 +104,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' - run: | yarn config set nodeLinker pnp @@ -168,7 +168,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' - run: yarn --immutable - env: @@ -192,7 +192,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' - run: yarn --immutable - env: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 31e2a3c2c..abbf315e9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' # TEST diff --git a/Dockerfile b/Dockerfile index 50549319c..955d8141a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # BASE # -FROM node:20-alpine AS base +FROM node:22-alpine AS base WORKDIR /app ARG TARGETPLATFORM