Skip to content

Commit 674d2f5

Browse files
dependabot[bot]tpantelis
authored andcommitted
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [sonarsource/sonarcloud-github-action](https://github.com/sonarsource/sonarcloud-github-action). Updates `actions/checkout` from 4.1.6 to 4.1.7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@a5ac7e5...692973e) Updates `github/codeql-action` from 3.25.7 to 3.25.10 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@f079b84...23acc5c) Updates `peter-evans/create-pull-request` from 6.0.5 to 6.1.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@6d6857d...c5a7806) Updates `sonarsource/sonarcloud-github-action` from 2.2.0 to 2.3.0 - [Release notes](https://github.com/sonarsource/sonarcloud-github-action/releases) - [Commits](SonarSource/sonarcloud-github-action@4006f66...e44258b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: sonarsource/sonarcloud-github-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8b7daf6 commit 674d2f5

11 files changed

+29
-29
lines changed

.github/workflows/codeowners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out the repository
18-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
18+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1919
- name: Delete current CODEOWNERS file
2020
run: rm CODEOWNERS
2121
- name: Run gen-codeowners to rebuild CODEOWNERS file

.github/workflows/e2e.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out the repository
16-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
16+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1717

1818
- name: Build the images if necessary
1919
uses: submariner-io/shipyard/gh-actions/[email protected]
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out the repository
29-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
29+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3030

3131
- name: Run E2E deployment and tests
3232
uses: submariner-io/shipyard/gh-actions/[email protected]
@@ -57,7 +57,7 @@ jobs:
5757
- extra-toggles: external-net, globalnet
5858
steps:
5959
- name: Check out the repository
60-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
60+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
6161

6262
- name: Run E2E deployment and tests
6363
uses: submariner-io/shipyard/gh-actions/[email protected]

.github/workflows/flake_finder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- extra-toggles: external-net
2727
steps:
2828
- name: Check out the repository
29-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
29+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3030

3131
- name: Run E2E deployment and tests
3232
uses: submariner-io/shipyard/gh-actions/[email protected]

.github/workflows/linting.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Check out the repository
41-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
41+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4242
- name: Run codegen
4343
run: make codegen
4444
- name: Ignore go.sum changes
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Check out the repository
54-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
54+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5555
- name: Recreate Protobuf files
5656
run: find pkg -name '*.pb.go' -delete -exec make {} \;
5757
- name: Ignore go.sum changes
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Check out the repository
67-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
67+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
6868
with:
6969
fetch-depth: 0
7070
- name: Run gitlint
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676
steps:
7777
- name: Check out the repository
78-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
78+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
7979
- name: Run golangci-lint
8080
run: make golangci-lint
8181

@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
steps:
8686
- name: Check out the repository
87-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
87+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
8888

8989
- name: Check the licenses
9090
run: make licensecheck
@@ -94,7 +94,7 @@ jobs:
9494
runs-on: ubuntu-latest
9595
steps:
9696
- name: Check out the repository
97-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
97+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
9898

9999
- name: Run markdown-link-check
100100
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- name: Check out the repository
111-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
111+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
112112
- name: Run markdownlint
113113
run: make markdownlint
114114

@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-latest
118118
steps:
119119
- name: Check out the repository
120-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
120+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
121121
- name: Run packagedoc-lint
122122
run: make packagedoc-lint
123123

@@ -126,7 +126,7 @@ jobs:
126126
runs-on: ubuntu-latest
127127
steps:
128128
- name: Check out the repository
129-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
129+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
130130
- name: Run shellcheck
131131
run: make shellcheck
132132

@@ -135,7 +135,7 @@ jobs:
135135
runs-on: ubuntu-latest
136136
steps:
137137
- name: Check out the repository
138-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
138+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
139139
- name: Run Anchore vulnerability scanner
140140
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a
141141
id: scan
@@ -148,7 +148,7 @@ jobs:
148148
run: cat ${{ steps.scan.outputs.sarif }}
149149
- name: Upload Anchore scan SARIF report
150150
if: always()
151-
uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f
151+
uses: github/codeql-action/upload-sarif@23acc5c183826b7a8a97bce3cecc52db901f8251
152152
with:
153153
sarif_file: ${{ steps.scan.outputs.sarif }}
154154

@@ -157,6 +157,6 @@ jobs:
157157
runs-on: ubuntu-latest
158158
steps:
159159
- name: Check out the repository
160-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
160+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
161161
- name: Run yamllint
162162
run: make yamllint

.github/workflows/multiarch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out the repository
15-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
15+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1616
- name: Set up QEMU (to support building on non-native architectures)
1717
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3
1818
- name: Build the multi-arch images

.github/workflows/periodic.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
pull-requests: write
1818
steps:
1919
- name: Check out the repository
20-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
20+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2121

2222
- name: Update internal submariner-io/* dependencies to latest
2323
run: |
@@ -26,7 +26,7 @@ jobs:
2626
done
2727
2828
- name: Create Pull Request
29-
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
29+
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c
3030
with:
3131
title: Update submariner-io/* dependencies to latest
3232
body: |
@@ -51,7 +51,7 @@ jobs:
5151
issues: write
5252
steps:
5353
- name: Check out the repository
54-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
54+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5555

5656
- name: Run markdown-link-check
5757
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/report.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2020
with:
2121
fetch-depth: 0
2222

2323
- name: Run Go unit tests
2424
run: make unit
2525

2626
- name: Run SonarScan, upload Go test results and coverage
27-
uses: sonarsource/sonarcloud-github-action@4006f663ecaf1f8093e8e4abb9227f6041f52216
27+
uses: sonarsource/sonarcloud-github-action@e44258b109568baa0df60ed515909fc6c72cba92
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -37,7 +37,7 @@ jobs:
3737
security-events: write
3838
steps:
3939
- name: Check out the repository
40-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
40+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4141
- name: Run Anchore vulnerability scanner
4242
uses: anchore/scan-action@3343887d815d7b07465f6fdcd395bd66508d486a
4343
id: scan
@@ -47,6 +47,6 @@ jobs:
4747
- name: Show Anchore scan SARIF report
4848
run: cat ${{ steps.scan.outputs.sarif }}
4949
- name: Upload Anchore scan SARIF report
50-
uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f
50+
uses: github/codeql-action/upload-sarif@23acc5c183826b7a8a97bce3cecc52db901f8251
5151
with:
5252
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/twitter-together.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: github.event_name == 'push'
2626
steps:
2727
- name: Check out the repository
28-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
28+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2929

3030
- name: Tweet
3131
uses: gr2m/twitter-together@5c4c327d1ad1ed8e1759e78a697b1cc93c1da692

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out the repository
15-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
15+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1616

1717
- name: Create artifacts directory
1818
run: mkdir artifacts

.github/workflows/upgrade-e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2020

2121
- name: Install an old cluster, upgrade it and check it
2222
uses: submariner-io/shipyard/gh-actions/[email protected]

0 commit comments

Comments
 (0)