From 413b4dc4fbe9b0e5c3a5982efe519446a5bc5546 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 10:25:48 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 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](https://github.com/actions/cache/compare/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] --- .github/workflows/api_test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/api_test.yml b/.github/workflows/api_test.yml index c15102097..188304ea9 100644 --- a/.github/workflows/api_test.yml +++ b/.github/workflows/api_test.yml @@ -55,7 +55,7 @@ jobs: python-version: '3.10' - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -63,7 +63,7 @@ jobs: ${{ runner.os }}-go- - name: Cache C++ extensions - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: openviking/pyagfs key: ${{ runner.os }}-cpp-${{ hashFiles('**/CMakeLists.txt', '**/*.cpp', '**/*.h') }} @@ -71,7 +71,7 @@ jobs: ${{ runner.os }}-cpp- - name: Cache Python dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/pyproject.toml') }}