Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BASE #
FROM node:20-alpine AS base
FROM node:22-alpine AS base

WORKDIR /app
ARG TARGETPLATFORM
Expand Down