Skip to content

Commit

Permalink
build(deps): bump actions/cache from 3 to 4 (#15)
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] authored Jul 14, 2024
1 parent 11195d2 commit 944795a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Cache Build
id: cache-build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{env.CCACHE_DIR}}
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.gpu}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Cache Build
id: cache-build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{env.CCACHE_DIR}}
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Cache Build
id: cache-build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{env.CCACHE_DIR}}
key: ${{runner.os}}-${{matrix.sys}}-${{matrix.env}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Cache METIS
if: matrix.metis == 'metis'
id: cache-metis
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: metis/
key: ${{matrix.msvc}}-metis-5.1.0-${{matrix.build_type}}-shared
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
- name: Cache LAPACK
id: cache-lapack
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{env.CCACHE_DIR}}
Expand Down

0 comments on commit 944795a

Please sign in to comment.