Skip to content

Commit cf5c3b9

Browse files
Merge pull request #449 from ESP32Async/dependabot/github_actions/actions/cache-6
Bump actions/cache from 5 to 6
2 parents e345b1e + db8e7b4 commit cf5c3b9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/cpplint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v7
3232

3333
- name: Cache
34-
uses: actions/cache@v5
34+
uses: actions/cache@v6
3535
with:
3636
key: ${{ runner.os }}-cpplint
3737
path: ~/.cache/pip

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "PY_HASH=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
4747
4848
- name: Restore pre-commit cache
49-
uses: actions/cache/restore@v5
49+
uses: actions/cache/restore@v6
5050
id: restore-cache
5151
with:
5252
path: |
@@ -64,7 +64,7 @@ jobs:
6464
run: pre-commit run --color=always --show-diff-on-failure --files ${{ steps.changed-files.outputs.all_changed_files }}
6565

6666
- name: Save pre-commit cache
67-
uses: actions/cache/save@v5
67+
uses: actions/cache/save@v6
6868
if: ${{ always() && steps.restore-cache.outputs.cache-hit != 'true' }}
6969
continue-on-error: true
7070
with:

0 commit comments

Comments
 (0)