Skip to content

Commit d94279b

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action), [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-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 `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) 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: golangci/golangci-lint-action dependency-version: '9' 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] <[email protected]>
1 parent 416679d commit d94279b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-go@v6
1515
with: { go-version: stable }
1616

17-
- uses: golangci/golangci-lint-action@v8
17+
- uses: golangci/golangci-lint-action@v9
1818
with:
1919
version: latest
2020
args: --timeout=5m

.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
@@ -179,7 +179,7 @@ jobs:
179179
- uses: actions/checkout@v5
180180
- uses: actions/setup-go@v6
181181
with: { go-version: stable }
182-
- uses: actions/download-artifact@v5
182+
- uses: actions/download-artifact@v6
183183
with: { path: download }
184184

185185
# Combine the coverage profiles by taking the mode line from any one file
@@ -203,7 +203,7 @@ jobs:
203203
204204
# Upload coverage to GitHub
205205
- run: gzip total-coverage.html
206-
- uses: actions/upload-artifact@v4
206+
- uses: actions/upload-artifact@v5
207207
with:
208208
name: coverage-report=html
209209
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)