Skip to content

Commit 55fd188

Browse files
authored
Merge pull request #475 from arnested/use-setup-go-action-fork
Use a fork of actions/setup-go
2 parents 4627fea + 0f20121 commit 55fd188

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/go-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
patch-level: true
2121
- name: Setup Go ${{ steps.go-version.outputs.latest }}
22-
uses: actions/setup-go@v6
22+
uses: arnested/setup-go@rc
2323
with:
2424
go-version: ${{ steps.go-version.outputs.latest }}
2525
- run: go mod edit -go ${{ steps.go-version.outputs.latest }}
@@ -61,7 +61,7 @@ jobs:
6161
echo "URL=https://tip.golang.org/doc/go$(sed -E 's/([0-9]+\.[0-9]+).*/\1/' <<< '${{ steps.go-version-unstable.outputs.latest }}')" >> $GITHUB_OUTPUT
6262
- name: Setup Go ${{ steps.go-version-unstable.outputs.latest }}
6363
if: steps.go-version-unstable.outputs.latest != steps.go-version-stable.outputs.latest
64-
uses: actions/setup-go@v6
64+
uses: arnested/setup-go@rc
6565
with:
6666
go-version: ${{ steps.go-version-unstable.outputs.latest }}
6767
- run: go mod edit -go ${{ steps.go-version-unstable.outputs.latest }}

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v6
1414
- name: Setup Go
15-
uses: actions/setup-go@v6
15+
uses: arnested/setup-go@rc
1616
with:
1717
go-version-file: go.mod
1818
- name: golangci-lint

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v6
1212
- name: Setup Go
13-
uses: actions/setup-go@v6
13+
uses: arnested/setup-go@rc
1414
with:
1515
go-version-file: go.mod
1616
- name: go mod tidy
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
fetch-depth: 0
3131
- name: Setup Go
32-
uses: actions/setup-go@v6
32+
uses: arnested/setup-go@rc
3333
with:
3434
go-version-file: go.mod
3535
- name: go version
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
fetch-depth: 0
7373
- name: Setup Go
74-
uses: actions/setup-go@v6
74+
uses: arnested/setup-go@rc
7575
with:
7676
go-version-file: go.mod
7777
- name: Install nilaway
@@ -85,7 +85,7 @@ jobs:
8585
steps:
8686
- uses: actions/checkout@v6
8787
- name: Setup Go
88-
uses: actions/setup-go@v6
88+
uses: arnested/setup-go@rc
8989
with:
9090
go-version-file: go.mod
9191
- name: Install wwhrd

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
2828
RELEASE_BRANCHES: main
2929
- name: Setup Go
30-
uses: actions/setup-go@v6
30+
uses: arnested/setup-go@rc
3131
with:
3232
go-version-file: go.mod
3333
- name: go version

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Setup Go
39-
uses: actions/setup-go@v6
39+
uses: arnested/setup-go@rc
4040
with:
4141
go-version-file: go.mod
4242
- id: govulncheck

0 commit comments

Comments
 (0)