File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,23 @@ jobs:
10
10
build :
11
11
strategy :
12
12
matrix :
13
- go-version : ["1.20 ", "1.21 "]
13
+ go-version : ["1.21 ", "1.22 "]
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
17
- name : Set up Go
18
- uses : actions/setup-go@v3
18
+ uses : actions/setup-go@v5
19
19
with :
20
20
go-version : ${{ matrix.go-version }}
21
21
id : go
22
22
23
23
- name : Check out Go module
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Tidy Go module
27
27
run : |
28
28
go mod tidy
29
29
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy' and submit your changes"; exit 1)
30
30
31
31
- name : golangci-lint
32
- uses : golangci/golangci-lint-action@v3
32
+ uses : golangci/golangci-lint-action@v6
Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ jobs:
10
10
build :
11
11
strategy :
12
12
matrix :
13
- go-version : ["1.20 ", "1.21 "]
13
+ go-version : ["1.21 ", "1.22 "]
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
17
- name : Set up Go
18
- uses : actions/setup-go@v3
18
+ uses : actions/setup-go@v5
19
19
with :
20
20
go-version : ${{ matrix.go-version }}
21
21
id : go
22
22
23
23
- name : Check out Go module
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Run integration tests
27
27
run : make integration
Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ jobs:
10
10
build :
11
11
strategy :
12
12
matrix :
13
- go-version : ["1.20 ", "1.21 "]
13
+ go-version : ["1.21 ", "1.22 "]
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
17
- name : Set up Go
18
- uses : actions/setup-go@v3
18
+ uses : actions/setup-go@v5
19
19
with :
20
20
go-version : ${{ matrix.go-version }}
21
21
id : go
22
22
23
23
- name : Check out Go module
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
26
26
- name : Run tests
27
27
run : make test
You can’t perform that action at this time.
0 commit comments