Skip to content

Commit 972daf2

Browse files
build: upgrade GitHub Actions versions and update Node.js to v22 in workflows
1 parent bfa235f commit 972daf2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ jobs:
3737

3838
steps:
3939
- name: Clone
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: Find tests
4343
run: |
4444
echo "Finding tests"
4545
grep -rn "def test" > /dev/null
4646
4747
- name: Setup Python
48-
uses: actions/setup-python@v4
48+
uses: actions/setup-python@v5
4949
with:
5050
python-version: '3.11'
5151

5252
- name: Setup Node
5353
uses: actions/setup-node@v4
5454
with:
55-
node-version: '20'
55+
node-version: '22'
5656
check-latest: true
5757

5858
- name: Cache pip

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v4
5252

5353
- name: Cache pip
54-
uses: actions/cache@v3
54+
uses: actions/cache@v4
5555
with:
5656
path: ~/.cache/pip
5757
key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py') }}

0 commit comments

Comments
 (0)