@@ -24,16 +24,16 @@ jobs:
2424 if : github.event_name != 'pull_request' || (!github.event.pull_request.draft && !contains(github.event.pull_request.title, 'WIP'))
2525 steps :
2626 - name : Checkout repository
27- uses : actions/checkout@v4
27+ uses : actions/checkout@v6
2828
2929 - name : Set up Go
30- uses : actions/setup-go@v5
30+ uses : actions/setup-go@v6
3131 with :
3232 go-version-file : ./go.mod
3333 cache : true
3434
3535 - name : Set up golangci-lint cache
36- uses : actions/cache@v4
36+ uses : actions/cache@v5
3737 with :
3838 path : ~/.cache/golangci-lint
3939 key : golangci-${{ hashFiles('.golangci.yml') }}-${{ hashFiles('go.sum') }}
4242 golangci-
4343
4444 - name : golangci-lint
45- uses : golangci/golangci-lint-action@v6
45+ uses : golangci/golangci-lint-action@v9
4646 with :
4747 version : latest
4848 only-new-issues : ${{ github.event_name == 'pull_request' }}
@@ -56,10 +56,10 @@ jobs:
5656 if : github.event_name != 'pull_request' || (!github.event.pull_request.draft && !contains(github.event.pull_request.title, 'WIP'))
5757 steps :
5858 - name : Checkout repository
59- uses : actions/checkout@v4
59+ uses : actions/checkout@v6
6060
6161 - name : Set up Go
62- uses : actions/setup-go@v5
62+ uses : actions/setup-go@v6
6363 with :
6464 go-version-file : ./go.mod
6565 cache : true
7171 run : go test -v -race -coverprofile=coverage.out ./...
7272
7373 - name : Upload coverage artifact
74- uses : actions/upload-artifact@v4
74+ uses : actions/upload-artifact@v6
7575 with :
7676 name : coverage
7777 path : coverage.out
@@ -87,10 +87,10 @@ jobs:
8787 pull-requests : write
8888 steps :
8989 - name : Checkout repository
90- uses : actions/checkout@v4
90+ uses : actions/checkout@v6
9191
9292 - name : Download coverage artifact
93- uses : actions/download-artifact@v4
93+ uses : actions/download-artifact@v6
9494 with :
9595 name : coverage
9696
@@ -119,10 +119,10 @@ jobs:
119119 goarch : amd64
120120 steps :
121121 - name : Checkout repository
122- uses : actions/checkout@v4
122+ uses : actions/checkout@v6
123123
124124 - name : Set up Go
125- uses : actions/setup-go@v5
125+ uses : actions/setup-go@v6
126126 with :
127127 go-version-file : ./go.mod
128128 cache : true
@@ -145,7 +145,7 @@ jobs:
145145 go build -ldflags "${LDFLAGS}" -o "build/${BINARY_NAME}" ./cmd/atl
146146
147147 - name : Upload build artifact
148- uses : actions/upload-artifact@v4
148+ uses : actions/upload-artifact@v6
149149 with :
150150 name : atl-${{ matrix.goos }}-${{ matrix.goarch }}
151151 path : build/
0 commit comments