File tree 3 files changed +14
-8
lines changed
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
24
24
steps :
25
25
- name : Checkout repository
26
- uses : actions/checkout@v2
26
+ uses : actions/checkout@v4
27
27
28
28
- name : Set up QEMU
29
- uses : docker/setup-qemu-action@v1
29
+ uses : docker/setup-qemu-action@v3
30
30
31
31
- name : Set up Docker Buildx
32
- uses : docker/setup-buildx-action@v1
32
+ uses : docker/setup-buildx-action@v3
33
33
34
34
# Login against a Docker registry except on PR
35
35
# https://github.com/docker/login-action
53
53
# Build and push Docker image with Buildx (don't push on PR)
54
54
# https://github.com/docker/build-push-action
55
55
- name : Build and push Docker image
56
- uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
56
+ uses : docker/build-push-action@v5
57
57
with :
58
58
context : .
59
59
platforms : linux/amd64,linux/arm64
Original file line number Diff line number Diff line change 13
13
name : lint
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-go@v4
18
+ with :
19
+ go-version : ' >=1.21.0'
20
+ cache : false
17
21
- name : golangci-lint
18
- uses : golangci/golangci-lint-action@v2
22
+ uses : golangci/golangci-lint-action@v3
23
+ with :
24
+ version : v1.55
Original file line number Diff line number Diff line change 11
11
goos : [linux, windows, darwin]
12
12
goarch : [amd64, arm64]
13
13
steps :
14
- - uses : actions/checkout@v2
15
- - uses : wangyoucao577/go-release-action@v1.22
14
+ - uses : actions/checkout@v4
15
+ - uses : wangyoucao577/go-release-action@v1.42
16
16
with :
17
17
github_token : ${{ secrets.GITHUB_TOKEN }}
18
18
goos : ${{ matrix.goos }}
You can’t perform that action at this time.
0 commit comments