Skip to content

Commit 70a5f46

Browse files
authored
Merge pull request #4090 from jepler/update-actions-v2
workflows: use actions/cache@v2
2 parents d4780a5 + 66e0f2d commit 70a5f46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ jobs:
462462
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
463463
- name: CircuitPython version
464464
run: git describe --dirty --tags
465-
- uses: actions/cache@v1
465+
- uses: actions/cache@v2
466466
name: Fetch IDF tool cache
467467
id: idf-cache
468468
with:

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: git submodule update --init extmod/ulab
2222
- name: set PY
2323
run: echo >>$GITHUB_ENV PY="$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')"
24-
- uses: actions/cache@v1
24+
- uses: actions/cache@v2
2525
with:
2626
path: ~/.cache/pre-commit
2727
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}

0 commit comments

Comments
 (0)