Skip to content

Commit 7887659

Browse files
committed
ci: use non-EOL runtimes and current action versions
Bump the CI workflow to avoid EOL/outdated versions: - actions/checkout, setup-node, setup-python -> @v7 (were @v4/@v5) - drop EOL Node 20 from the matrix; test on Node 22.x (Active LTS) + 24.x Python stays on 3.11 (supported, not EOL). Verified the JS builds/smoke/tests pass locally on Node 24.
1 parent 050e8e8 commit 7887659

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
node-version: ['20.x', '22.x']
22+
node-version: ['22.x', '24.x']
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: actions/setup-node@v4
24+
- uses: actions/checkout@v7
25+
- uses: actions/setup-node@v7
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: npm
@@ -37,8 +37,8 @@ jobs:
3737
name: Backend (FastAPI)
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
41-
- uses: actions/setup-python@v5
40+
- uses: actions/checkout@v7
41+
- uses: actions/setup-python@v7
4242
with:
4343
python-version: '3.11'
4444
cache: pip
@@ -54,8 +54,8 @@ jobs:
5454
runs-on: ubuntu-latest
5555
continue-on-error: true
5656
steps:
57-
- uses: actions/checkout@v4
58-
- uses: actions/setup-node@v4
57+
- uses: actions/checkout@v7
58+
- uses: actions/setup-node@v7
5959
with:
6060
node-version: '22.x'
6161
cache: npm

0 commit comments

Comments
 (0)