File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 - .github/workflows/go-tests-other-os.yml
88 - .github/actions/**
99 - codeql-workspace.yml
10+ env :
11+ GO_VERSION : ' 1.21.0'
1012jobs :
1113 test-mac :
1214 name : Test MacOS
1315 runs-on : macos-latest
1416 steps :
15- - name : Set up Go 1.20
17+ - name : Set up Go ${{ env.GO_VERSION }}
1618 uses : actions/setup-go@v4
1719 with :
18- go-version : ' 1.20 '
20+ go-version : ${{ env.GO_VERSION }}
1921 id : go
2022
2123 - name : Check out code
@@ -47,10 +49,10 @@ jobs:
4749 name : Test Windows
4850 runs-on : windows-latest-xl
4951 steps :
50- - name : Set up Go 1.20
52+ - name : Set up Go ${{ env.GO_VERSION }}
5153 uses : actions/setup-go@v4
5254 with :
53- go-version : ' 1.20 '
55+ go-version : ${{ env.GO_VERSION }}
5456 id : go
5557
5658 - name : Check out code
Original file line number Diff line number Diff line change 1515 - .github/workflows/go-tests.yml
1616 - .github/actions/**
1717 - codeql-workspace.yml
18+ env :
19+ GO_VERSION : ' 1.21.0'
1820jobs :
1921 test-linux :
2022 name : Test Linux (Ubuntu)
2123 runs-on : ubuntu-latest-xl
2224 steps :
23- - name : Set up Go 1.20
25+ - name : Set up Go ${{ env.GO_VERSION }}
2426 uses : actions/setup-go@v4
2527 with :
26- go-version : ' 1.20 '
28+ go-version : ${{ env.GO_VERSION }}
2729 id : go
2830
2931 - name : Check out code
You can’t perform that action at this time.
0 commit comments