Skip to content

Commit 74192dc

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 79d281e commit 74192dc

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') }}
@@ -68,7 +68,7 @@ jobs:
6868
run: |
6969
DOCKER_REPO=${DOCKER_REPO,,}
7070
echo "DOCKER_REPO=$DOCKER_REPO" >> "$GITHUB_ENV"
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v6
7272
- uses: actions/setup-python@v6
7373
- run: pip install -r tests/ci-requirements.txt
7474

0 commit comments

Comments
 (0)