Skip to content

Commit fddad78

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 4466496 commit fddad78

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') }}
@@ -73,7 +73,7 @@ jobs:
7373
DOCKER_REPO=${GITHUB_REPOSITORY,,}
7474
fi
7575
echo "DOCKER_REPO=$DOCKER_REPO" >> "$GITHUB_ENV"
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v6
7777
- uses: actions/setup-python@v6
7878
- run: pip install -r tests/ci-requirements.txt
7979

0 commit comments

Comments
 (0)