From 54e944f161c6ead91b911a14fa88221ee66f1d71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 14:34:34 +0000 Subject: [PATCH] Bump actions/cache from 5.0.5 to 6.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.0.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/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... 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 3d16dfd..4d7bbf6 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ~/go/pkg/mod key: build-go-mod-${{ runner.os }}-${{ hashFiles('go.sum') }} - name: Cache Go build cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.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 370e249..4ddd80c 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ~/go/pkg/mod key: unit-test-go-mod-${{ runner.os }}-${{ hashFiles('go.sum') }} - name: Cache Go build cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.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 03585e4..f766b4e 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ~/go/pkg/mod key: govulncheck-go-mod-${{ runner.os }}-${{ hashFiles('tools/go.sum') }} - name: Cache Go build cache - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.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 0f85301..68445c9 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: ~/.cache/go-build key: copilot-go-build-${{ runner.os }}-${{ steps.build-cache-key.outputs.checksum }}