Skip to content

Commit 93315a4

Browse files
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](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@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](actions/cache@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] <[email protected]>
1 parent 669ff86 commit 93315a4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/actions/trivy/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ runs:
9292
# Restore a recent cache beginning with the prefix.
9393
- id: restore
9494
if: ${{ contains(fromJSON(steps.parsed.outputs.cache), 'restore') }}
95-
uses: actions/cache/restore@v4
95+
uses: actions/cache/restore@v5
9696
with:
9797
path: ${{ inputs.cache-directory }}
9898
key: ${{ inputs.cache-prefix }}-
@@ -132,7 +132,7 @@ runs:
132132
(contains(fromJSON(steps.parsed.outputs.cache), 'success') && success())
133133
)
134134
}}
135-
uses: actions/cache/save@v4
135+
uses: actions/cache/save@v5
136136
with:
137137
key: ${{ steps.trivy.outputs.cache-key }}
138138
path: ${{ inputs.cache-directory }}

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Upload coverage to GitHub
4242
- run: gzip envtest.coverage
43-
- uses: actions/upload-artifact@v5
43+
- uses: actions/upload-artifact@v6
4444
with:
4545
name: "~coverage~kubernetes-api=${{ matrix.kubernetes }}"
4646
path: envtest.coverage.gz
@@ -75,7 +75,7 @@ jobs:
7575

7676
# Upload coverage to GitHub
7777
- run: gzip envtest-existing.coverage
78-
- uses: actions/upload-artifact@v5
78+
- uses: actions/upload-artifact@v6
7979
with:
8080
name: "~coverage~kubernetes-k3d=${{ matrix.kubernetes }}"
8181
path: envtest-existing.coverage.gz
@@ -214,7 +214,7 @@ jobs:
214214
- uses: actions/checkout@v6
215215
- uses: actions/setup-go@v6
216216
with: { go-version: stable }
217-
- uses: actions/download-artifact@v6
217+
- uses: actions/download-artifact@v7
218218
with: { path: download }
219219

220220
# Combine the coverage profiles by taking the mode line from any one file
@@ -238,7 +238,7 @@ jobs:
238238
239239
# Upload coverage to GitHub
240240
- run: gzip total-coverage.html
241-
- uses: actions/upload-artifact@v5
241+
- uses: actions/upload-artifact@v6
242242
with:
243243
name: coverage-report=html
244244
path: total-coverage.html.gz

0 commit comments

Comments
 (0)