Skip to content

Commit da276bb

Browse files
dependabot[bot]tpantelis
authored andcommitted
Bump the github-actions group with 7 updates
Bumps the github-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `3.27.5` | `3.28.1` | | [anchore/scan-action](https://github.com/anchore/scan-action) | `5.3.0` | `6.0.0` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.2.0` | `3.3.0` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7.0.5` | `7.0.6` | | [sonarsource/sonarcloud-github-action](https://github.com/sonarsource/sonarcloud-github-action) | `3.1.0` | `4.0.0` | | [actions/stale](https://github.com/actions/stale) | `f69122271d990fd11f5594ccff2296f00ff59b49` | `fa77dfddd04682b7d96dbc4e016318e681fdc10e` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.3` | `4.6.0` | Updates `github/codeql-action` from 3.27.5 to 3.28.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@f09c1c0...b6a472f) Updates `anchore/scan-action` from 5.3.0 to 6.0.0 - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/RELEASE.md) - [Commits](anchore/scan-action@869c549...abae793) Updates `docker/setup-qemu-action` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@49b3bc8...53851d1) Updates `peter-evans/create-pull-request` from 7.0.5 to 7.0.6 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@5e91468...67ccf78) Updates `sonarsource/sonarcloud-github-action` from 3.1.0 to 4.0.0 - [Release notes](https://github.com/sonarsource/sonarcloud-github-action/releases) - [Commits](SonarSource/sonarcloud-github-action@383f7e5...02ef911) Updates `actions/stale` from f69122271d990fd11f5594ccff2296f00ff59b49 to fa77dfddd04682b7d96dbc4e016318e681fdc10e - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@f691222...fa77dfd) Updates `actions/upload-artifact` from 4.4.3 to 4.6.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b4b15b8...65c4c4a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor 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: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: sonarsource/sonarcloud-github-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/stale dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1bef6f9 commit da276bb

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
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@11bd71901bbe5b1630ceea73d27597364c9af683
139139
- name: Initialize CodeQL
140-
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88
140+
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
141141
with:
142142
languages: go
143143
- name: Run CodeQL variant analysis
144-
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88
144+
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
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@11bd71901bbe5b1630ceea73d27597364c9af683
155155
- name: Run Anchore vulnerability scanner
156-
uses: anchore/scan-action@869c549e657a088dc0441b08ce4fc0ecdac2bb65
156+
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
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@f09c1c0a94de965c15400f5634aa42fac8fb8f88
167+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
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@11bd71901bbe5b1630ceea73d27597364c9af683
1616
- name: Set up QEMU (to support building on non-native architectures)
17-
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf
17+
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a
1818
- name: Build the multi-arch images
1919
run: make multiarch-images
2020
- name: Check that we actually build multi-arch images

.github/workflows/periodic.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
done
2727
2828
- name: Create Pull Request
29-
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f
29+
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
3030
with:
3131
title: Update submariner-io/* dependencies to latest
3232
body: |

.github/workflows/report.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: make unit
2525

2626
- name: Run SonarScan, upload Go test results and coverage
27-
uses: sonarsource/sonarcloud-github-action@383f7e52eae3ab0510c3cb0e7d9d150bbaeab838
27+
uses: sonarsource/sonarcloud-github-action@02ef91109b2d589e757aefcfb2854c2783fd7b19
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -38,11 +38,11 @@ jobs:
3838
- name: Check out the repository
3939
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4040
- name: Initialize CodeQL
41-
uses: github/codeql-action/init@f09c1c0a94de965c15400f5634aa42fac8fb8f88
41+
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
4242
with:
4343
languages: go
4444
- name: Run CodeQL variant analysis
45-
uses: github/codeql-action/analyze@f09c1c0a94de965c15400f5634aa42fac8fb8f88
45+
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
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@11bd71901bbe5b1630ceea73d27597364c9af683
5959
- name: Run Anchore vulnerability scanner
60-
uses: anchore/scan-action@869c549e657a088dc0441b08ce4fc0ecdac2bb65
60+
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
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@f09c1c0a94de965c15400f5634aa42fac8fb8f88
68+
uses: github/codeql-action/upload-sarif@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c
6969
with:
7070
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
issues: write
1717
pull-requests: write
1818
steps:
19-
- uses: actions/stale@f69122271d990fd11f5594ccff2296f00ff59b49
19+
- uses: actions/stale@fa77dfddd04682b7d96dbc4e016318e681fdc10e
2020
with:
2121
days-before-issue-stale: 120
2222
days-before-pr-stale: 14

.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@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
33+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
3434
with:
3535
name: Unit test artifacts
3636
path: artifacts

0 commit comments

Comments
 (0)