From 88092bb6a5b6789ee8647cb1171acc2de1029bc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:22:48 +0000 Subject: [PATCH] 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/deploy-agent.yml | 2 +- .github/workflows/deploy-cloudrun.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-agent.yml b/.github/workflows/deploy-agent.yml index 08618c7..52c3a6c 100644 --- a/.github/workflows/deploy-agent.yml +++ b/.github/workflows/deploy-agent.yml @@ -42,7 +42,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache Go - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/go-build diff --git a/.github/workflows/deploy-cloudrun.yml b/.github/workflows/deploy-cloudrun.yml index 05fef56..a727298 100644 --- a/.github/workflows/deploy-cloudrun.yml +++ b/.github/workflows/deploy-cloudrun.yml @@ -50,7 +50,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache Gradle packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches @@ -60,7 +60,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache SonarCloud packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7210e8..8fa577d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache Go modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/go-build @@ -74,7 +74,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Cache Gradle dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches