Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#400)
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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent e150c6c commit a89b2ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
shell: bash

- name: Restore LFS cache (private repository)
uses: actions/cache@v3
uses: actions/cache@v4
id: lfs-cache
with:
path: ./traffic_data/.git/lfs
Expand All @@ -61,7 +61,7 @@ jobs:

# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
- name: Cache Packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.local
Expand All @@ -79,7 +79,7 @@ jobs:
run: poetry run python -c "import sys; print(sys.version)"

- name: Cache folder for traffic
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-folder
with:
path: |
Expand All @@ -89,7 +89,7 @@ jobs:
key: traffic-${{ runner.os }}

- name: Cache folder for documentation
uses: actions/cache@v3
uses: actions/cache@v4
id: docs-folder
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
shell: bash

- name: Restore LFS cache (private repository)
uses: actions/cache@v3
uses: actions/cache@v4
id: lfs-cache
with:
path: ./traffic_data/.git/lfs
Expand All @@ -70,7 +70,7 @@ jobs:

# virtualenv cache should depends on OS, Python version and `poetry.lock` (and optionally workflow files).
- name: Cache Packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.local
Expand All @@ -88,7 +88,7 @@ jobs:
run: poetry run python -c "import sys; print(sys.version)"

- name: Cache folder for traffic
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-folder
with:
path: |
Expand Down

0 comments on commit a89b2ff

Please sign in to comment.