Skip to content

Commit ea99037

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), [anchore/scan-action](https://github.com/anchore/scan-action), [github/codeql-action](https://github.com/github/codeql-action) and [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action). Updates `actions/checkout` from 4.2.0 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@d632683...11bd719) Updates `anchore/scan-action` from 4.1.2 to 5.2.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@64a33b2...5ed195c) Updates `github/codeql-action` from 3.26.10 to 3.27.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@e2b3eaf...6624720) Updates `docker/setup-buildx-action` from 3.6.1 to 3.7.1 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@988b5a0...c47758b) --- updated-dependencies: - dependency-name: actions/checkout 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: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 44d9535 commit ea99037

File tree

8 files changed

+38
-38
lines changed

8 files changed

+38
-38
lines changed

.github/workflows/codeowners.yml

Lines changed: 1 addition & 1 deletion
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@d632683dd7b4114ad314bca15554477dd762a938
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1919
- name: Delete current CODEOWNERS file
2020
run: rm CODEOWNERS
2121
- name: Run gen-codeowners to rebuild CODEOWNERS file

.github/workflows/consuming.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
k8s_version: '1.26'
3333
steps:
3434
- name: Check out the ${{ matrix.project }} repository
35-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
35+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3636
with:
3737
# This is replaced to stable branch by auto release process
3838
ref: release-0.17
@@ -41,7 +41,7 @@ jobs:
4141
# Check out Shipyard as a sub directory of the project, so that `go replace` can work.
4242
# As it's all run inside an ephemeral container, this way guarantees the Shipyard bits will be readily available for `go replace`.
4343
- name: Check out the Shipyard repository
44-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
44+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4545
with:
4646
path: shipyard
4747

@@ -83,13 +83,13 @@ jobs:
8383
]
8484
steps:
8585
- name: Check out the Shipyard repository
86-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
86+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
8787

8888
- name: Build the latest Shipyard image
8989
run: make images
9090

9191
- name: Check out the ${{ matrix.project }} repository
92-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
92+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9393
with:
9494
# This is replaced to stable branch by auto release process
9595
ref: release-0.17
@@ -138,13 +138,13 @@ jobs:
138138
]
139139
steps:
140140
- name: Check out the Shipyard repository
141-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
141+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
142142

143143
- name: Build the latest Shipyard image
144144
run: make images
145145

146146
- name: Check out the ${{ matrix.project }} repository
147-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
147+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
148148
with:
149149
# This is replaced to stable branch by auto release process
150150
ref: release-0.17

.github/workflows/linting.yml

Lines changed: 11 additions & 11 deletions
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@d632683dd7b4114ad314bca15554477dd762a938
41+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4242
- name: Make sure each commit in the PR is within reviewable size
4343
uses: ./gh-actions/commit-size
4444
with:
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Check out the repository
52-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
52+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5353
with:
5454
fetch-depth: 0
5555
- name: Run gitlint
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Check out the repository
63-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
63+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
6464
- name: Run golangci-lint
6565
run: make golangci-lint
6666

@@ -69,7 +69,7 @@ jobs:
6969
runs-on: ubuntu-latest
7070
steps:
7171
- name: Check out the repository
72-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
72+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
7373

7474
- name: Run markdown-link-check
7575
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- name: Check out the repository
86-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
86+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
8787
- name: Run markdownlint
8888
run: make markdownlint
8989

@@ -92,7 +92,7 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- name: Check out the repository
95-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
95+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9696
- name: Run packagedoc-lint
9797
run: make packagedoc-lint
9898

@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-latest
102102
steps:
103103
- name: Check out the repository
104-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
104+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
105105
- name: Run shellcheck
106106
run: make shellcheck
107107

@@ -110,9 +110,9 @@ jobs:
110110
runs-on: ubuntu-latest
111111
steps:
112112
- name: Check out the repository
113-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
113+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
114114
- name: Run Anchore vulnerability scanner
115-
uses: anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5
115+
uses: anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd
116116
id: scan
117117
with:
118118
path: "."
@@ -123,7 +123,7 @@ jobs:
123123
run: cat ${{ steps.scan.outputs.sarif }}
124124
- name: Upload Anchore scan SARIF report
125125
if: always()
126-
uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13
126+
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd
127127
with:
128128
sarif_file: ${{ steps.scan.outputs.sarif }}
129129

@@ -132,6 +132,6 @@ jobs:
132132
runs-on: ubuntu-latest
133133
steps:
134134
- name: Check out the repository
135-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
135+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
136136
- name: Run yamllint
137137
run: make yamllint

.github/workflows/periodic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
issues: write
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020

2121
- name: Run markdown-link-check
2222
uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec
@@ -44,13 +44,13 @@ jobs:
4444
]
4545
steps:
4646
- name: Check out the Shipyard repository
47-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
47+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4848

4949
- name: Build go-mod-outdated
5050
run: cd tools && go build -o ../bin/go-mod-outdated github.com/psampaz/go-mod-outdated
5151

5252
- name: Check out the ${{ matrix.project }} repository
53-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
53+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
5454
with:
5555
repository: submariner-io/${{ matrix.project }}
5656
path: ${{ matrix.project }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check out the repository
20-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121
with:
2222
submodules: true
2323

.github/workflows/report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
security-events: write
1919
steps:
2020
- name: Check out the repository
21-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2222
- name: Run Anchore vulnerability scanner
23-
uses: anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5
23+
uses: anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd
2424
id: scan
2525
with:
2626
path: "."
2727
fail-build: false
2828
- name: Show Anchore scan SARIF report
2929
run: cat ${{ steps.scan.outputs.sarif }}
3030
- name: Upload Anchore scan SARIF report
31-
uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13
31+
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd
3232
with:
3333
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/testing.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out the repository
18-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1919

2020
- name: Set up QEMU (to support building on non-native architectures)
2121
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf
2222

2323
- name: Set up buildx
24-
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db
24+
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349
2525

2626
- name: Restore images from the cache
2727
uses: ./gh-actions/restore-images
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Check out the repository
42-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
42+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4343

4444
- name: Restore images from the cache
4545
uses: ./gh-actions/restore-images
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Check out the repository
62-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
62+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
6363

6464
- name: Build images
6565
run: make images
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Check out the repository
80-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
80+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
8181

8282
- name: Restore images from the cache
8383
uses: ./gh-actions/restore-images
@@ -95,7 +95,7 @@ jobs:
9595
runs-on: ubuntu-latest
9696
steps:
9797
- name: Check out the repository
98-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
98+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9999

100100
- name: Restore images from the cache
101101
uses: ./gh-actions/restore-images
@@ -135,7 +135,7 @@ jobs:
135135
run: rm -rf /usr/share/dotnet
136136

137137
- name: Check out the repository
138-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
138+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
139139
with:
140140
submodules: true
141141

@@ -159,7 +159,7 @@ jobs:
159159
runs-on: ubuntu-latest
160160
steps:
161161
- name: Check out the repository
162-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
162+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
163163

164164
- name: Restore images from the cache
165165
uses: ./gh-actions/restore-images
@@ -176,7 +176,7 @@ jobs:
176176
runs-on: ubuntu-latest
177177
steps:
178178
- name: Check out the repository
179-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
179+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
180180

181181
- name: Build the images if necessary
182182
uses: ./gh-actions/cache-images
@@ -187,7 +187,7 @@ jobs:
187187
runs-on: ubuntu-latest
188188
steps:
189189
- name: Check out the repository
190-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
190+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
191191

192192
- name: Restore images from the cache
193193
uses: ./gh-actions/restore-images
@@ -201,7 +201,7 @@ jobs:
201201
runs-on: ubuntu-latest
202202
steps:
203203
- name: Check out the repository
204-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
204+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
205205

206206
- name: Restore images from the cache
207207
uses: ./gh-actions/restore-images
@@ -218,7 +218,7 @@ jobs:
218218
runs-on: ubuntu-latest
219219
steps:
220220
- name: Check out the repository
221-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
221+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
222222

223223
- name: Restore images from the cache
224224
uses: ./gh-actions/restore-images

.github/workflows/upgrade-e2e.yml

Lines changed: 1 addition & 1 deletion
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@d632683dd7b4114ad314bca15554477dd762a938
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020

2121
- name: Install an old cluster, upgrade it and check it
2222
uses: ./gh-actions/upgrade-e2e

0 commit comments

Comments
 (0)