X Tutup
Skip to content

Commit 4e393fd

Browse files
committed
Avoid intermittent CI failures while setting up Go
Switch to `actions/setup-go@v2-beta` which advertises better retries around downloading the Go version
1 parent 971e658 commit 4e393fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Set up Go 1.13
13-
uses: actions/setup-go@v1
13+
uses: actions/setup-go@v2-beta
1414
with:
1515
go-version: 1.13
1616

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Set up Go 1.13
15-
uses: actions/setup-go@v1
15+
uses: actions/setup-go@v2-beta
1616
with:
1717
go-version: 1.13
1818

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414
- name: Set up Go 1.13
15-
uses: actions/setup-go@v1
15+
uses: actions/setup-go@v2-beta
1616
with:
1717
go-version: 1.13
1818
- name: Generate changelog

0 commit comments

Comments
 (0)
X Tutup