File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ jobs:
1414 runs-on : ubuntu-latest
1515 steps :
1616 - name : Set up Go
17- uses : actions/setup-go@v2
17+ uses : actions/setup-go@v5
1818 with :
1919 go-version : ${{ matrix.go-version }}
2020
2121 - name : Cache go modules
22- uses : actions/cache@v1
22+ uses : actions/cache@v4
2323 with :
2424 path : ~/go/pkg/mod
2525 key : ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
2626 restore-keys : ${{ runner.os }}-go-${{ hashFiles('go.sum') }}
2727
2828 - name : Check out code
29- uses : actions/checkout@v2
29+ uses : actions/checkout@v4
3030
3131 - name : Get and verify dependencies
3232 run : go mod download && go mod verify
Original file line number Diff line number Diff line change 77 name : lint
88 runs-on : ubuntu-latest
99 steps :
10- - uses : actions/checkout@v2
10+ - uses : actions/checkout@v4
1111 - name : golangci-lint
12- uses : golangci/golangci-lint-action@v2
12+ uses : golangci/golangci-lint-action@v6
1313 with :
1414 version : latest
1515 only-new-issues : true
You can’t perform that action at this time.
0 commit comments