Skip to content

Commit 251853b

Browse files
🌱 Bump actions/setup-go from 5.2.0 to 5.3.0 (#4504)
1 parent f8ff154 commit 251853b

9 files changed

+17
-17
lines changed

.github/workflows/codeql-analysis.yml

+1-1
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
68+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
6969
with:
7070
go-version: ${{ env.GO_VERSION }}
7171
check-latest: true

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
83+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
8484
with:
8585
go-version: ${{ env.GO_VERSION }}
8686
check-latest: true

.github/workflows/gitlab.yml

+1-1
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
44+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
4545
with:
4646
go-version: ${{ env.GO_VERSION }}
4747
check-latest: true

.github/workflows/goreleaser.yaml

+1-1
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
46+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v2.2.0
4747
with:
4848
go-version: ${{ env.GO_VERSION }}
4949
check-latest: true

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
ref: ${{ github.event.pull_request.head.sha }}
5454
- name: Setup Go
55-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
55+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5656
with:
5757
go-version: ${{ env.GO_VERSION }}
5858
check-latest: true

.github/workflows/lint.yml

+1-1
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26-
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
26+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2727
with:
2828
go-version: ${{ env.GO_VERSION }}
2929
cache: false # golangci-lint maintains its own cache

.github/workflows/main.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Clone the code
4444
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4545
- name: Setup Go
46-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
46+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
124+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
151151
- name: Setup Go
152-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
152+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
189+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
241241
- name: Setup Go
242-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
242+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
284+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
310310
- name: Setup Go
311-
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
311+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
347+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
373-
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v2.2.0
373+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v2.2.0
374374
with:
375375
go-version: ${{ env.GO_VERSION }}
376376
check-latest: true

.github/workflows/publishimage.yml

+1-1
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@3041bf56c941b39c61721a86cd11f3bb1338122a
48+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34
4949
with:
5050
go-version: ${{ env.GO_VERSION }}
5151
check-latest: true

.github/workflows/scdiff.yml

+1-1
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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
96+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
9797
with:
9898
go-version: ${{ env.GO_VERSION }}
9999
check-latest: true

0 commit comments

Comments
 (0)