Commit 2c82b21 1 parent bcc8dc8 commit 2c82b21 Copy full SHA for 2c82b21
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,18 @@ jobs:
18
18
19
19
steps :
20
20
- name : Checkout code
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 0
24
24
25
25
- name : Set up Go
26
- uses : actions/setup-go@v4
26
+ uses : actions/setup-go@v5
27
27
with :
28
28
go-version : ' stable'
29
29
30
30
- name : Goreleaser Release (Snapshot)
31
31
if : github.event_name != 'push' || startsWith(github.ref, 'refs/heads/') # 触发条件为手动或非 tag 的 push
32
- uses : goreleaser/goreleaser-action@v4
32
+ uses : goreleaser/goreleaser-action@v6
33
33
with :
34
34
version : latest
35
35
args : release --snapshot --clean # 快照发布
67
67
68
68
- name : Goreleaser Release (Official)
69
69
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') # 触发条件为 tag 的 push
70
- uses : goreleaser/goreleaser-action@v4
70
+ uses : goreleaser/goreleaser-action@v6
71
71
with :
72
72
version : latest
73
73
args : release --clean # 正式发布
You can’t perform that action at this time.
0 commit comments