File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ permissions:
14
14
15
15
env :
16
16
# run static analysis only with the latest Go version
17
- LATEST_GO_VERSION : " 1.20 "
17
+ LATEST_GO_VERSION : " 1.21 "
18
18
19
19
jobs :
20
20
check :
24
24
uses : actions/checkout@v3
25
25
26
26
- name : Set up Go ${{ matrix.go }}
27
- uses : actions/setup-go@v3
27
+ uses : actions/setup-go@v4
28
28
with :
29
29
go-version : ${{ env.LATEST_GO_VERSION }}
30
30
check-latest : true
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ permissions:
14
14
15
15
env :
16
16
# run coverage and benchmarks only with the latest Go version
17
- LATEST_GO_VERSION : " 1.20 "
17
+ LATEST_GO_VERSION : " 1.21 "
18
18
19
19
jobs :
20
20
test :
@@ -25,15 +25,15 @@ jobs:
25
25
# Echo tests with last four major releases (unless there are pressing vulnerabilities)
26
26
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
27
27
# we derive from last four major releases promise.
28
- go : ["1.18", "1.19", "1.20"]
28
+ go : ["1.18", "1.19", "1.20", "1.21" ]
29
29
name : ${{ matrix.os }} @ Go ${{ matrix.go }}
30
30
runs-on : ${{ matrix.os }}
31
31
steps :
32
32
- name : Checkout Code
33
33
uses : actions/checkout@v3
34
34
35
35
- name : Set up Go ${{ matrix.go }}
36
- uses : actions/setup-go@v3
36
+ uses : actions/setup-go@v4
37
37
with :
38
38
go-version : ${{ matrix.go }}
39
39
64
64
path : new
65
65
66
66
- name : Set up Go ${{ matrix.go }}
67
- uses : actions/setup-go@v3
67
+ uses : actions/setup-go@v4
68
68
with :
69
69
go-version : ${{ env.LATEST_GO_VERSION }}
70
70
You can’t perform that action at this time.
0 commit comments