Skip to content

Commit 8040d88

Browse files
Bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9b0345d commit 8040d88

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/codeql-analysis.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
with: { go-version: stable }
2525

2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@v3
27+
uses: github/codeql-action/init@v4
2828
with: { languages: go }
2929

3030
- name: Autobuild
3131
# This action calls `make` which runs our "help" target.
32-
uses: github/codeql-action/autobuild@v3
32+
uses: github/codeql-action/autobuild@v4
3333

3434
- name: Perform CodeQL Analysis
35-
uses: github/codeql-action/analyze@v3
35+
uses: github/codeql-action/analyze@v4

.github/workflows/govulncheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
# succeed or fail according to branch protection rules.
3838
# - https://docs.github.com/en/code-security/code-scanning
3939
- name: Upload results to GitHub
40-
uses: github/codeql-action/upload-sarif@v3
40+
uses: github/codeql-action/upload-sarif@v4
4141
with:
4242
sarif_file: 'govulncheck-results.sarif'
4343

.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@v4
43+
- uses: actions/upload-artifact@v5
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@v4
78+
- uses: actions/upload-artifact@v5
7979
with:
8080
name: "~coverage~kubernetes-k3d=${{ matrix.kubernetes }}"
8181
path: envtest-existing.coverage.gz
@@ -173,7 +173,7 @@ jobs:
173173
- uses: actions/checkout@v5
174174
- uses: actions/setup-go@v6
175175
with: { go-version: stable }
176-
- uses: actions/download-artifact@v5
176+
- uses: actions/download-artifact@v6
177177
with: { path: download }
178178

179179
# Combine the coverage profiles by taking the mode line from any one file
@@ -197,7 +197,7 @@ jobs:
197197
198198
# Upload coverage to GitHub
199199
- run: gzip total-coverage.html
200-
- uses: actions/upload-artifact@v4
200+
- uses: actions/upload-artifact@v5
201201
with:
202202
name: coverage-report=html
203203
path: total-coverage.html.gz

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,6 @@ jobs:
120120
# succeed or fail according to branch protection rules.
121121
# - https://docs.github.com/en/code-security/code-scanning
122122
- name: Upload results to GitHub
123-
uses: github/codeql-action/upload-sarif@v3
123+
uses: github/codeql-action/upload-sarif@v4
124124
with:
125125
sarif_file: 'trivy-results.sarif'

0 commit comments

Comments
 (0)