Skip to content

Commit 47e39f2

Browse files
dependabot[bot]tjmoore4
authored andcommitted
Bump the github-actions group across 2 directories with 5 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [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 2 updates in the /.github/actions/trivy directory: [aquasecurity/setup-trivy](https://github.com/aquasecurity/setup-trivy) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) 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 `aquasecurity/setup-trivy` from 0.2.4 to 0.2.5 - [Release notes](https://github.com/aquasecurity/setup-trivy/releases) - [Commits](aquasecurity/setup-trivy@v0.2.4...v0.2.5) 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/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - 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: aquasecurity/setup-trivy dependency-version: 0.2.5 dependency-type: direct:production update-type: version-update:semver-patch 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] <support@github.com>
1 parent 4e7b420 commit 47e39f2

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/actions/trivy/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ runs:
8484
# Install Trivy as requested.
8585
# NOTE: `setup-trivy` can download a "latest" version but cannot cache it.
8686
- if: ${{ ! contains(fromJSON(steps.parsed.outputs.setup), 'none') }}
87-
uses: aquasecurity/setup-trivy@v0.2.4
87+
uses: aquasecurity/setup-trivy@v0.2.5
8888
with:
8989
cache: ${{ contains(fromJSON(steps.parsed.outputs.setup), 'cache') }}
9090
version: ${{ steps.parsed.outputs.version }}
9191

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/codeql-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- uses: actions/setup-go@v6
2626
with: { go-version: stable }
2727

.github/workflows/govulncheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
runs-on: ubuntu-24.04
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
# Install Go and produce a SARIF report. This fails only when the tool is
3030
# unable to scan.

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read
1313
checks: write
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-go@v6
1717
with: { go-version: stable }
1818

.github/workflows/test.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
go-test:
1313
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-go@v6
1717
with: { go-version: stable }
1818

@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
kubernetes: ['default']
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- uses: actions/setup-go@v6
3535
with: { go-version: stable }
3636

@@ -42,7 +42,7 @@ jobs:
4242

4343
# Upload coverage to GitHub
4444
- run: gzip envtest.coverage
45-
- uses: actions/upload-artifact@v5
45+
- uses: actions/upload-artifact@v6
4646
with:
4747
name: "~coverage~kubernetes-api=${{ matrix.kubernetes }}"
4848
path: envtest.coverage.gz
@@ -57,7 +57,7 @@ jobs:
5757
matrix:
5858
kubernetes: [v1.30, v1.34]
5959
steps:
60-
- uses: actions/checkout@v5
60+
- uses: actions/checkout@v6
6161
- uses: actions/setup-go@v6
6262
with: { go-version: stable }
6363

@@ -77,7 +77,7 @@ jobs:
7777

7878
# Upload coverage to GitHub
7979
- run: gzip envtest-existing.coverage
80-
- uses: actions/upload-artifact@v5
80+
- uses: actions/upload-artifact@v6
8181
with:
8282
name: "~coverage~kubernetes-k3d=${{ matrix.kubernetes }}"
8383
path: envtest-existing.coverage.gz
@@ -91,7 +91,7 @@ jobs:
9191
matrix:
9292
kubernetes: [v1.30, v1.34]
9393
steps:
94-
- uses: actions/checkout@v5
94+
- uses: actions/checkout@v6
9595
- uses: actions/setup-go@v6
9696
with: { go-version: stable }
9797

@@ -165,10 +165,10 @@ jobs:
165165
- kubernetes-k3d
166166
- e2e-k3d-kuttl
167167
steps:
168-
- uses: actions/checkout@v5
168+
- uses: actions/checkout@v6
169169
- uses: actions/setup-go@v6
170170
with: { go-version: stable }
171-
- uses: actions/download-artifact@v6
171+
- uses: actions/download-artifact@v7
172172
with: { path: download }
173173

174174
# Combine the coverage profiles by taking the mode line from any one file
@@ -192,7 +192,7 @@ jobs:
192192
193193
# Upload coverage to GitHub
194194
- run: gzip total-coverage.html
195-
- uses: actions/upload-artifact@v5
195+
- uses: actions/upload-artifact@v6
196196
with:
197197
name: coverage-report=html
198198
path: total-coverage.html.gz

.github/workflows/trivy.yaml

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

2424
runs-on: ubuntu-24.04
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Download Trivy
2828
uses: ./.github/actions/trivy
2929
env:
@@ -43,7 +43,7 @@ jobs:
4343
4444
runs-on: ubuntu-24.04
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747

4848
# Trivy needs a populated Go module cache to detect Go module licenses.
4949
- uses: actions/setup-go@v6
@@ -69,7 +69,7 @@ jobs:
6969
7070
runs-on: ubuntu-24.04
7171
steps:
72-
- uses: actions/checkout@v5
72+
- uses: actions/checkout@v6
7373

7474
# Report success only when detected secrets are listed in [.trivyignore.yaml].
7575
- name: Scan secrets
@@ -91,7 +91,7 @@ jobs:
9191

9292
runs-on: ubuntu-24.04
9393
steps:
94-
- uses: actions/checkout@v5
94+
- uses: actions/checkout@v6
9595

9696
# Print any detected secrets or vulnerabilities to the workflow log for
9797
# human consumption. This step fails only when Trivy is unable to scan.

0 commit comments

Comments
 (0)