Skip to content

Commit b9f680a

Browse files
dependabot[bot]skitt
authored andcommitted
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [github/codeql-action](https://github.com/github/codeql-action), [anchore/scan-action](https://github.com/anchore/scan-action), [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `github/codeql-action` from 3.25.11 to 3.25.15 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b611370...afb54ba) Updates `anchore/scan-action` from 3.6.4 to 4.1.0 - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](anchore/scan-action@3343887...d43cc1d) Updates `docker/setup-qemu-action` from 3.0.0 to 3.2.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@6882732...49b3bc8) Updates `actions/upload-artifact` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6546280...0b2256b) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 783be3b commit b9f680a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/linting.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ jobs:
137137
- name: Check out the repository
138138
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
139139
- name: Initialize CodeQL
140-
uses: github/codeql-action/init@b611370bb5703a7efb587f9d136a52ea24c5c38c
140+
uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
141141
with:
142142
languages: go
143143
- name: Run CodeQL variant analysis
144-
uses: github/codeql-action/analyze@b611370bb5703a7efb587f9d136a52ea24c5c38c
144+
uses: github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
145145
- name: Show CodeQL scan SARIF report
146146
if: always()
147147
run: cat ../results/go.sarif
@@ -153,7 +153,7 @@ jobs:
153153
- name: Check out the repository
154154
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
155155
- name: Run Anchore vulnerability scanner
156-
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a
156+
uses: anchore/scan-action@d43cc1dfea6a99ed123bf8f3133f1797c9b44492
157157
id: scan
158158
with:
159159
path: "."
@@ -164,7 +164,7 @@ jobs:
164164
run: cat ${{ steps.scan.outputs.sarif }}
165165
- name: Upload Anchore scan SARIF report
166166
if: always()
167-
uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c
167+
uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
168168
with:
169169
sarif_file: ${{ steps.scan.outputs.sarif }}
170170

.github/workflows/multiarch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Check out the repository
1515
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1616
- name: Set up QEMU (to support building on non-native architectures)
17-
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3
17+
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf
1818
- name: Build the multi-arch images
1919
run: make multiarch-images
2020
- name: Check that we actually build multi-arch images

.github/workflows/report.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
- name: Check out the repository
3939
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4040
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@b611370bb5703a7efb587f9d136a52ea24c5c38c
41+
uses: github/codeql-action/init@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
4242
with:
4343
languages: go
4444
- name: Run CodeQL variant analysis
45-
uses: github/codeql-action/analyze@b611370bb5703a7efb587f9d136a52ea24c5c38c
45+
uses: github/codeql-action/analyze@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
4646
- name: Show CodeQL scan SARIF report
4747
if: always()
4848
run: cat ../results/go.sarif
@@ -57,14 +57,14 @@ jobs:
5757
- name: Check out the repository
5858
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5959
- name: Run Anchore vulnerability scanner
60-
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a
60+
uses: anchore/scan-action@d43cc1dfea6a99ed123bf8f3133f1797c9b44492
6161
id: scan
6262
with:
6363
path: "."
6464
fail-build: false
6565
- name: Show Anchore scan SARIF report
6666
run: cat ${{ steps.scan.outputs.sarif }}
6767
- name: Upload Anchore scan SARIF report
68-
uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c
68+
uses: github/codeql-action/upload-sarif@afb54ba388a7dca6ecae48f608c4ff05ff4cc77a
6969
with:
7070
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
done
3131
3232
- name: Upload artifacts
33-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
33+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b
3434
with:
3535
name: Unit test artifacts
3636
path: artifacts

0 commit comments

Comments
 (0)