Skip to content

Commit 0c7b071

Browse files
dependabot[bot]skitt
authored andcommitted
Bump the github-actions group with 5 updates
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) | `1.0.16` | `1.0.17` | | [github/codeql-action](https://github.com/github/codeql-action) | `3.28.10` | `3.28.13` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `5.0.0` | `5.1.0` | | [actions/setup-go](https://github.com/actions/setup-go) | `5.3.0` | `5.4.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.1` | `4.6.2` | Updates `gaurav-nelson/github-action-markdown-link-check` from 1.0.16 to 1.0.17 - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@1b916f2...3c3b66f) Updates `github/codeql-action` from 3.28.10 to 3.28.13 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@b56ba49...1b549b9) Updates `SonarSource/sonarqube-scan-action` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@0303d6b...aa49445) Updates `actions/setup-go` from 5.3.0 to 5.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@f111f33...0aaccfd) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@4cec3d8...ea165f8) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-version: 1.0.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 3.28.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 4.6.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c5e7c0d commit 0c7b071

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/linting.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
101101

102102
- name: Run markdown-link-check
103-
uses: gaurav-nelson/github-action-markdown-link-check@1b916f2cf6c36510a6059943104e3c42ce6c16bc
103+
uses: gaurav-nelson/github-action-markdown-link-check@3c3b66f1f7d0900e37b71eca45b63ea9eedfce31
104104
with:
105105
config-file: ".markdownlinkcheck.json"
106106
check-modified-files-only: "yes"
@@ -140,11 +140,11 @@ jobs:
140140
- name: Check out the repository
141141
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
142142
- name: Initialize CodeQL
143-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
143+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841
144144
with:
145145
languages: go
146146
- name: Run CodeQL variant analysis
147-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
147+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841
148148
- name: Show CodeQL scan SARIF report
149149
if: always()
150150
run: cat ../results/go.sarif
@@ -167,7 +167,7 @@ jobs:
167167
run: cat ${{ steps.scan.outputs.sarif }}
168168
- name: Upload Anchore scan SARIF report
169169
if: always()
170-
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
170+
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841
171171
with:
172172
sarif_file: ${{ steps.scan.outputs.sarif }}
173173

.github/workflows/periodic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020

2121
- name: Run markdown-link-check
22-
uses: gaurav-nelson/github-action-markdown-link-check@1b916f2cf6c36510a6059943104e3c42ce6c16bc
22+
uses: gaurav-nelson/github-action-markdown-link-check@3c3b66f1f7d0900e37b71eca45b63ea9eedfce31
2323
with:
2424
config-file: ".markdownlinkcheck.json"
2525

.github/workflows/report.yml

Lines changed: 4 additions & 4 deletions
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/sonarqube-scan-action@0303d6b62e310685c0e34d0b9cde218036885c4d
27+
uses: SonarSource/sonarqube-scan-action@aa494459d7c39c106cc77b166de8b4250a32bb97
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@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
41+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841
4242
with:
4343
languages: go
4444
- name: Run CodeQL variant analysis
45-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
45+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841
4646
- name: Show CodeQL scan SARIF report
4747
if: always()
4848
run: cat ../results/go.sarif
@@ -65,6 +65,6 @@ jobs:
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@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
68+
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841
6969
with:
7070
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/subctl-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ref: ${{ github.base_ref }}
3434

3535
- name: Set up Go
36-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34
36+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
3737
with:
3838
go-version: '1.22'
3939
check-latest: true

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
done
3434
3535
- name: Upload artifacts
36-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
36+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
3737
with:
3838
name: Unit test artifacts
3939
path: artifacts

0 commit comments

Comments
 (0)