Skip to content

Commit 3c90872

Browse files
authored
Update go to version 1.21.3 (#737)
* Update go to version 1.21.3 * Fix to use ~ range for go version
1 parent 58865dd commit 3c90872

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.github/workflows/canary.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
submodules: recursive
6868
- uses: actions/setup-go@v4
6969
with:
70-
go-version: '^1.21.2'
70+
go-version: '~1.21.3'
71+
check-latest: true
7172
- uses: actions/setup-java@v3
7273
if: ${{ matrix.language == 'java' }}
7374
with:

.github/workflows/main-build-python39.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
submodules: recursive
3434
- uses: actions/setup-go@v4
3535
with:
36-
go-version: '^1.21.2'
36+
go-version: '~1.21.3'
37+
check-latest: true
3738
- uses: actions/setup-python@v4
3839
with:
3940
python-version: '3.x'

.github/workflows/main-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ jobs:
8484
submodules: recursive
8585
- uses: actions/setup-go@v4
8686
with:
87-
go-version: '^1.21.2'
87+
go-version: '~1.21.3'
88+
check-latest: true
8889
- uses: actions/setup-java@v3
8990
if: ${{ matrix.language == 'java' }}
9091
with:

.github/workflows/pr-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424
submodules: true
2525
- uses: actions/setup-go@v4
2626
with:
27-
go-version: '^1.21.2'
27+
go-version: '~1.21.3'
28+
check-latest: true
2829
- uses: actions/setup-java@v3
2930
if: ${{ matrix.language == 'java' }}
3031
with:

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ jobs:
272272
# above, always setup go 1.18.
273273
# if: ${{ env.TEST_LANGUAGE == 'go' }}
274274
with:
275-
go-version: '^1.21.2'
275+
go-version: '~1.21.3'
276+
check-latest: true
276277
- name: download layer tf file
277278
uses: actions/download-artifact@v3
278279
with:

.github/workflows/soaking.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
submodules: recursive
6868
- uses: actions/setup-go@v4
6969
with:
70-
go-version: '^1.21.2'
70+
go-version: '~1.21.3'
71+
check-latest: true
7172
- uses: actions/setup-java@v3
7273
if: ${{ matrix.language == 'java' }}
7374
with:

0 commit comments

Comments
 (0)