Skip to content

Commit c87d4a3

Browse files
🌱 Bump actions/setup-go from 6.0.0 to 6.1.0
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@4469467...4dc6199) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 488797d commit c87d4a3

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
# don't use the default version of Go from GitHub runners
6666
# https://github.com/github/codeql-action/issues/1842#issuecomment-1704398087
6767
- name: Setup Go
68-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
68+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
6969
with:
7070
go-version: ${{ env.GO_VERSION }}
7171
check-latest: true

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
8181
- name: Setup Go # needed for some of the Makefile evaluations, even if building happens in Docker
8282
if: (needs.docs_only_check.outputs.docs_only != 'true')
83-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
83+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
8484
with:
8585
go-version: ${{ env.GO_VERSION }}
8686
check-latest: true

.github/workflows/gitlab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
ref: ${{ github.event.pull_request.head.sha || github.sha }} # head SHA if PR, else fallback to push SHA
4343
- name: Setup Go
44-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
44+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4545
with:
4646
go-version: ${{ env.GO_VERSION }}
4747
check-latest: true

.github/workflows/goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
fetch-depth: 0
4545
- name: Set up Go
46-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
46+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
4747
with:
4848
go-version: ${{ env.GO_VERSION }}
4949
check-latest: true

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
ref: ${{ github.event.pull_request.head.sha }}
4141
- name: Setup Go
42-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
42+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4343
with:
4444
go-version: ${{ env.GO_VERSION }}
4545
check-latest: true

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2525
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
26-
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
26+
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
2727
with:
2828
go-version: ${{ env.GO_VERSION }}
2929
cache: false # golangci-lint maintains its own cache

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Clone the code
4444
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
4545
- name: Setup Go
46-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
46+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4747
with:
4848
go-version: ${{ env.GO_VERSION }}
4949
check-latest: true
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
fetch-depth: 0
123123
- name: Setup Go
124-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
124+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
125125
with:
126126
go-version: ${{ env.GO_VERSION }}
127127
check-latest: true
@@ -149,7 +149,7 @@ jobs:
149149
- name: Clone the code
150150
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
151151
- name: Setup Go
152-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
152+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
153153
with:
154154
go-version: ${{ env.GO_VERSION }}
155155
check-latest: true
@@ -186,7 +186,7 @@ jobs:
186186
with:
187187
fetch-depth: 0
188188
- name: Setup Go
189-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
189+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
190190
with:
191191
go-version: ${{ env.GO_VERSION }}
192192
check-latest: true
@@ -239,7 +239,7 @@ jobs:
239239
- name: Clone the code
240240
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
241241
- name: Setup Go
242-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
242+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
243243
with:
244244
go-version: ${{ env.GO_VERSION }}
245245
check-latest: true
@@ -281,7 +281,7 @@ jobs:
281281
with:
282282
fetch-depth: 0
283283
- name: Setup Go
284-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
284+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
285285
with:
286286
go-version: ${{ env.GO_VERSION }}
287287
check-latest: true
@@ -308,7 +308,7 @@ jobs:
308308
- name: Clone the code
309309
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
310310
- name: Setup Go
311-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
311+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
312312
with:
313313
go-version: ${{ env.GO_VERSION }}
314314
check-latest: true
@@ -344,7 +344,7 @@ jobs:
344344
with:
345345
fetch-depth: 0
346346
- name: Setup Go
347-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
347+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
348348
with:
349349
go-version: ${{ env.GO_VERSION }}
350350
check-latest: true
@@ -370,7 +370,7 @@ jobs:
370370
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
371371

372372
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
373-
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v2.2.0
373+
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v2.2.0
374374
with:
375375
go-version: ${{ env.GO_VERSION }}
376376
check-latest: true

.github/workflows/publishimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
fetch-depth: 0
4747
- name: Setup Go
48-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00
48+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
4949
with:
5050
go-version: ${{ env.GO_VERSION }}
5151
check-latest: true

.github/workflows/scdiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
with:
9494
ref: ${{ steps.config.outputs.base }}
9595
- name: Setup Go
96-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
96+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
9797
with:
9898
go-version: ${{ env.GO_VERSION }}
9999
check-latest: true

0 commit comments

Comments
 (0)