🐛(ci) run crowdin workflows on node 22

The frontend package.json now requires node >= 22, so the crowdin
workflows fail at yarn install with the node 20 they still request.
Align them with drive-frontend.yml and update the reusable job
default so future callers cannot regress silently.
This commit is contained in:
Nicolas Clerc
2026-08-07 15:30:19 +02:00
parent 464cd7ab2f
commit 2117f0dbf1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
install-front: install-front:
uses: ./.github/workflows/front-dependencies-installation.yml uses: ./.github/workflows/front-dependencies-installation.yml
with: with:
node_version: '20.x' node_version: '22.x'
synchronize-with-crowdin: synchronize-with-crowdin:
runs-on: ubuntu-latest runs-on: ubuntu-latest
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
install-front: install-front:
uses: ./.github/workflows/front-dependencies-installation.yml uses: ./.github/workflows/front-dependencies-installation.yml
with: with:
node_version: '20.x' node_version: '22.x'
synchronize-with-crowdin: synchronize-with-crowdin:
needs: install-front needs: install-front
@@ -5,7 +5,7 @@ on:
inputs: inputs:
node_version: node_version:
required: false required: false
default: '20.x' default: '22.x'
type: string type: string
jobs: jobs: