Skip to content

Commit 6c6b813

Browse files
authored
Merge pull request #847 from mit-ll-responsible-ai/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents e1c966b + 56fb0d2 commit 6c6b813

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "::set-output name=dir::$(pip cache dir)"
2828

2929
- name: Cache dependencies
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/test_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "::set-output name=dir::$(pip cache dir)"
2828

2929
- name: Cache dependencies
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/tox_run.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
pip install tox
8080
- name: Cache tox environments
8181
id: cache-third-party
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: .tox
8585
key: tox-pyright-docs-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('deps/requirements-pyright.txt') }}-${{ hashFiles('.github/workflows/tox.yml') }}
@@ -100,7 +100,7 @@ jobs:
100100
pip install tox tox-gh-actions
101101
- name: Cache tox environments
102102
id: cache-third-party
103-
uses: actions/cache@v4
103+
uses: actions/cache@v5
104104
with:
105105
path: .tox
106106
key: tox-third-party-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('tests/conftest.py') }}-${{ hashFiles('.github/workflows/tox.yml') }}

0 commit comments

Comments
 (0)