Skip to content

Commit

Permalink
Merge pull request #631 from mit-ll-responsible-ai/dependabot/github_…
Browse files Browse the repository at this point in the history
…actions/actions/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
rsokl authored Jan 21, 2024
2 parents 80be20d + 1507c4c commit 3278e7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: echo "::set-output name=dir::$(pip cache dir)"

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: echo "::set-output name=dir::$(pip cache dir)"

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tox_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
pip install tox
- name: Cache tox environments
id: cache-third-party
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .tox
key: tox-pyright-docs-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('deps/requirements-pyright.txt') }}-${{ hashFiles('.github/workflows/tox.yml') }}
Expand All @@ -100,7 +100,7 @@ jobs:
pip install tox tox-gh-actions
- name: Cache tox environments
id: cache-third-party
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .tox
key: tox-third-party-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('tests/conftest.py') }}-${{ hashFiles('.github/workflows/tox.yml') }}
Expand Down

0 comments on commit 3278e7c

Please sign in to comment.