Skip to content

Commit f619665

Browse files
committed
[FIX] Bump actions/checkout and actions/cache
Node.js 20 is EOL, so we need to move to actions that support node.js 24 pre-commit/action should also be updated, but it seems the pre-commit team has abandoned this Github action in favor of their https://pre-commit.ci/ service. This will have to wait for another time.
1 parent e6d1f5a commit f619665

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- uses: actions/setup-python@v6
1818
- name: Set PY
1919
run: |
2020
echo "PY=$(python -c 'import hashlib,sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')" >> $GITHUB_ENV
21-
- uses: actions/cache@v4
21+
- uses: actions/cache@v5
2222
with:
2323
path: ~/.cache/pre-commit
2424
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
@@ -72,7 +72,7 @@ jobs:
7272
DOCKER_REPO=${GITHUB_REPOSITORY,,}
7373
fi
7474
echo "DOCKER_REPO=$DOCKER_REPO" >> "$GITHUB_ENV"
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v6
7676
- uses: actions/setup-python@v6
7777
- run: pip install -r tests/ci-requirements.txt
7878

0 commit comments

Comments
 (0)