From 93315a4d3543c274d026641ce11775cc7db4c49f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 00:04:51 +0000 Subject: [PATCH] Bump the github-actions group across 2 directories with 3 updates Bumps the github-actions group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Bumps the github-actions group with 1 update in the /.github/actions/trivy directory: [actions/cache](https://github.com/actions/cache). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `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/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/actions/trivy/action.yaml | 4 ++-- .github/workflows/test.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/trivy/action.yaml b/.github/actions/trivy/action.yaml index bcc67421cb..0ef56928c3 100644 --- a/.github/actions/trivy/action.yaml +++ b/.github/actions/trivy/action.yaml @@ -92,7 +92,7 @@ runs: # Restore a recent cache beginning with the prefix. - id: restore if: ${{ contains(fromJSON(steps.parsed.outputs.cache), 'restore') }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ inputs.cache-directory }} key: ${{ inputs.cache-prefix }}- @@ -132,7 +132,7 @@ runs: (contains(fromJSON(steps.parsed.outputs.cache), 'success') && success()) ) }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: ${{ steps.trivy.outputs.cache-key }} path: ${{ inputs.cache-directory }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 748bfec8a2..3a0d3bae40 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,7 +40,7 @@ jobs: # Upload coverage to GitHub - run: gzip envtest.coverage - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: "~coverage~kubernetes-api=${{ matrix.kubernetes }}" path: envtest.coverage.gz @@ -75,7 +75,7 @@ jobs: # Upload coverage to GitHub - run: gzip envtest-existing.coverage - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: "~coverage~kubernetes-k3d=${{ matrix.kubernetes }}" path: envtest-existing.coverage.gz @@ -214,7 +214,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: { go-version: stable } - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: { path: download } # Combine the coverage profiles by taking the mode line from any one file @@ -238,7 +238,7 @@ jobs: # Upload coverage to GitHub - run: gzip total-coverage.html - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: coverage-report=html path: total-coverage.html.gz