Skip to content

Commit 15d1b5a

Browse files
ci: upgrade GitHub Actions to Node 24-compatible versions
GitHub is deprecating Node.js 20 on Actions runners (default switches to Node 24 on 2026-06-16, full removal 2026-09-16). Bump the affected actions (actions/checkout, actions/setup-python, and peter-evans/create-pull-request where used) to versions that ship Node 24 support. Part of overhangio/tutor#1398
1 parent a65d6fa commit 15d1b5a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
sync:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414
- name: Add remote

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
matrix:
1414
python-version: ["3.9", "3.12"]
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Set up ${{ matrix.python-version }}
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies

0 commit comments

Comments
 (0)