@@ -15,29 +15,29 @@ jobs:
15
15
COSIGN_EXPERIMENTAL : " 1"
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
with :
20
20
fetch-depth : 0
21
21
22
22
- name : Install cosign
23
- uses : sigstore/cosign-installer@v2
23
+ uses : sigstore/cosign-installer@v3
24
24
25
25
- name : Set env
26
26
run : echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
27
27
28
28
- name : Set up Docker Buildx
29
- uses : docker/setup-buildx-action@v2
29
+ uses : docker/setup-buildx-action@v3
30
30
31
31
- name : Login to GitHub Container Registry
32
- uses : docker/login-action@v2
32
+ uses : docker/login-action@v3
33
33
with :
34
34
registry : ghcr.io
35
35
username : ${{ secrets.USERNAME }}
36
36
password : ${{ secrets.CR_PAT }}
37
37
38
38
- name : Build and push
39
39
id : build-and-push
40
- uses : docker/build-push-action@v3
40
+ uses : docker/build-push-action@v5
41
41
with :
42
42
context : .
43
43
push : true
@@ -77,18 +77,18 @@ jobs:
77
77
runs-on : ubuntu-latest
78
78
steps :
79
79
- name : checkout
80
- uses : actions/checkout@v3
80
+ uses : actions/checkout@v4
81
81
with :
82
82
fetch-depth : 0
83
83
- name : Set up Go
84
- uses : actions/setup-go@v3
84
+ uses : actions/setup-go@v5
85
85
with :
86
86
go-version : " 1.20"
87
87
88
88
- name : Run GoReleaser
89
- uses : goreleaser/goreleaser-action@v4
89
+ uses : goreleaser/goreleaser-action@v5
90
90
with :
91
91
version : latest
92
- args : release --rm-dist
92
+ args : release --clean
93
93
env :
94
94
GITHUB_TOKEN : ${{ secrets.CR_PAT }}
0 commit comments