Skip to content

Commit 2b8a8c5

Browse files
build(deps): bump actions/cache from 4 to 5 (#1001)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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>
1 parent ff7c38d commit 2b8a8c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/api_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,23 +55,23 @@ jobs:
5555
python-version: '3.10'
5656

5757
- name: Cache Go modules
58-
uses: actions/cache@v4
58+
uses: actions/cache@v5
5959
with:
6060
path: ~/go/pkg/mod
6161
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
6262
restore-keys: |
6363
${{ runner.os }}-go-
6464
6565
- name: Cache C++ extensions
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
with:
6868
path: openviking/pyagfs
6969
key: ${{ runner.os }}-cpp-${{ hashFiles('**/CMakeLists.txt', '**/*.cpp', '**/*.h') }}
7070
restore-keys: |
7171
${{ runner.os }}-cpp-
7272
7373
- name: Cache Python dependencies
74-
uses: actions/cache@v4
74+
uses: actions/cache@v5
7575
with:
7676
path: ~/.cache/pip
7777
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/pyproject.toml') }}

0 commit comments

Comments
 (0)