Skip to content

Commit

Permalink
build(deps): bump actions/cache from 3 to 4 (#1088)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jan 22, 2024
1 parent 239e527 commit 76afb84
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Restore pip cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: restore-cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
Expand Down Expand Up @@ -86,14 +86,14 @@ jobs:
- name: Save pip cache
if: github.ref == 'refs/heads/master'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip-dependencies

- name: Cache datasets
id: cache-datasets
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./_datasets
enableCrossOsArchive: true
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: python -m atari_py.import_roms ROMS

- name: Restore HF cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.TRANSFORMERS_CACHE }}
key: cache-transformers
Expand All @@ -139,7 +139,7 @@ jobs:

- name: Save HF cache
if: github.ref == 'refs/heads/master'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ env.TRANSFORMERS_CACHE }}
key: cache-transformers
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python-version: 3.9

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('requirements/*.txt') }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
python-version: 3.9

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('requirements/*.txt') }}
Expand Down

0 comments on commit 76afb84

Please sign in to comment.