From 4382f878043a833c8576be23f739839f9253d04e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 14:35:40 +0000 Subject: [PATCH] Bump actions/cache in the action-minor-patch-versions group Bumps the action-minor-patch-versions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 6.0.0 to 6.1.0 - [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/2c8a9bd7457de244a408f35966fab2fb45fda9c8...55cc8345863c7cc4c66a329aec7e433d2d1c52a9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: action-minor-patch-versions ... Signed-off-by: dependabot[bot] --- .github/workflows/callable-build.yaml | 4 ++-- .github/workflows/callable-test.yaml | 4 ++-- .github/workflows/code-scanning.yaml | 4 ++-- .github/workflows/copilot-setup-steps.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/callable-build.yaml b/.github/workflows/callable-build.yaml index 4d7bbf6..2097fc7 100644 --- a/.github/workflows/callable-build.yaml +++ b/.github/workflows/callable-build.yaml @@ -38,13 +38,13 @@ jobs: echo "checksum=$checksum" >> "$GITHUB_OUTPUT" - name: Cache Go module cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/go/pkg/mod key: build-go-mod-${{ runner.os }}-${{ hashFiles('go.sum') }} - name: Cache Go build cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/go-build key: build-go-build-${{ runner.os }}-${{ matrix.go-version-alias }}-${{ steps.build-cache-key.outputs.checksum }} diff --git a/.github/workflows/callable-test.yaml b/.github/workflows/callable-test.yaml index 4ddd80c..85f0f92 100644 --- a/.github/workflows/callable-test.yaml +++ b/.github/workflows/callable-test.yaml @@ -38,13 +38,13 @@ jobs: echo "checksum=$checksum" >> "$GITHUB_OUTPUT" - name: Cache Go module cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/go/pkg/mod key: unit-test-go-mod-${{ runner.os }}-${{ hashFiles('go.sum') }} - name: Cache Go build cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/go-build key: unit-test-go-build-${{ runner.os }}-${{ matrix.go-version-alias }}-${{ steps.build-cache-key.outputs.checksum }} diff --git a/.github/workflows/code-scanning.yaml b/.github/workflows/code-scanning.yaml index f766b4e..db19140 100644 --- a/.github/workflows/code-scanning.yaml +++ b/.github/workflows/code-scanning.yaml @@ -59,13 +59,13 @@ jobs: echo "checksum=$checksum" >> "$GITHUB_OUTPUT" - name: Cache Go module cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/go/pkg/mod key: govulncheck-go-mod-${{ runner.os }}-${{ hashFiles('tools/go.sum') }} - name: Cache Go build cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/go-build key: govulncheck-go-build-${{ runner.os }}-${{ steps.build-cache-key.outputs.checksum }} diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 68445c9..8ba755f 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -31,13 +31,13 @@ jobs: run: echo "checksum=${{ hashFiles('go.mod', 'go.sum', 'tools/go.mod', 'tools/go.sum', '**/*.go') }}" >> "$GITHUB_OUTPUT" - name: Cache Go module cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/go/pkg/mod key: copilot-go-mod-${{ runner.os }}-${{ hashFiles('go.sum', 'tools/go.sum') }} - name: Cache Go build cache - uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/go-build key: copilot-go-build-${{ runner.os }}-${{ steps.build-cache-key.outputs.checksum }}