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:
1010 build :
1111 strategy :
1212 matrix :
13- go-version : ["1.20 ", "1.21 "]
13+ go-version : ["1.21 ", "1.22 "]
1414 runs-on : ubuntu-latest
1515
1616 steps :
1717 - name : Set up Go
18- uses : actions/setup-go@v3
18+ uses : actions/setup-go@v5
1919 with :
2020 go-version : ${{ matrix.go-version }}
2121 id : go
2222
2323 - name : Check out Go module
24- uses : actions/checkout@v3
24+ uses : actions/checkout@v4
2525
2626 - name : Tidy Go module
2727 run : |
2828 go mod tidy
2929 test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy' and submit your changes"; exit 1)
3030
3131 - 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:
1010 build :
1111 strategy :
1212 matrix :
13- go-version : ["1.20 ", "1.21 "]
13+ go-version : ["1.21 ", "1.22 "]
1414 runs-on : ubuntu-latest
1515
1616 steps :
1717 - name : Set up Go
18- uses : actions/setup-go@v3
18+ uses : actions/setup-go@v5
1919 with :
2020 go-version : ${{ matrix.go-version }}
2121 id : go
2222
2323 - name : Check out Go module
24- uses : actions/checkout@v3
24+ uses : actions/checkout@v4
2525
2626 - name : Run integration tests
2727 run : make integration
Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ jobs:
1010 build :
1111 strategy :
1212 matrix :
13- go-version : ["1.20 ", "1.21 "]
13+ go-version : ["1.21 ", "1.22 "]
1414 runs-on : ubuntu-latest
1515
1616 steps :
1717 - name : Set up Go
18- uses : actions/setup-go@v3
18+ uses : actions/setup-go@v5
1919 with :
2020 go-version : ${{ matrix.go-version }}
2121 id : go
2222
2323 - name : Check out Go module
24- uses : actions/checkout@v3
24+ uses : actions/checkout@v4
2525
2626 - name : Run tests
2727 run : make test
You can’t perform that action at this time.
0 commit comments