File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 4
4
test-nocache :
5
5
strategy :
6
6
matrix :
7
- go-version : [1.20 .x, 1.21 .x]
7
+ go-version : [1.22 .x, 1.23 .x]
8
8
os : [ubuntu-latest, macos-latest, windows-latest]
9
9
runs-on : ${{ matrix.os }}
10
10
steps :
11
- - uses : actions/checkout@v3
12
- - uses : actions/setup-go@v4
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-go@v5
13
13
with :
14
14
go-version : ${{ matrix.go-version }}
15
15
cache : false
18
18
test-cache :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v3
22
- - uses : actions/setup-go@v4
21
+ - uses : actions/checkout@v4
22
+ - uses : actions/setup-go@v5
23
23
with :
24
- go-version : 1.21 .x
24
+ go-version : 1.23 .x
25
25
- run : go test ./...
Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
13
13
test :
14
14
strategy :
15
15
matrix :
16
- go-version : [1.21 .x, 1.22 .x]
16
+ go-version : [1.22 .x, 1.23 .x]
17
17
os : [ubuntu-latest, macos-latest, windows-latest]
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
20
+ - uses : actions/checkout@v4
20
21
- uses : actions/setup-go@v5
21
22
with :
22
23
go-version : ${{ matrix.go-version }}
23
- - uses : actions/checkout@v4
24
24
- run : go test ./...
25
25
` ` `
26
26
@@ -180,7 +180,7 @@ jobs:
180
180
run:
181
181
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
182
182
steps:
183
- - uses: actions/checkout@v3
183
+ - uses: actions/checkout@v4
184
184
with:
185
185
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
186
186
` ` `
Original file line number Diff line number Diff line change 1
1
module mod.test/actions
2
2
3
- go 1.20
3
+ go 1.22
4
4
5
5
require rsc.io/quote v1.5.2
6
6
You can’t perform that action at this time.
0 commit comments