File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,24 +19,24 @@ jobs:
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v2
22
+ uses : actions/checkout@v3
23
23
- name : Unshallow
24
24
run : git fetch --prune --unshallow
25
25
- name : Set up Go
26
- uses : actions/setup-go@v2
26
+ uses : actions/setup-go@v3
27
27
with :
28
28
go-version : 1.17
29
29
- name : Describe plugin
30
30
id : plugin_describe
31
31
run : echo "::set-output name=api_version::$(go run . describe | jq -r '.api_version')"
32
32
- name : Import GPG key
33
33
id : import_gpg
34
- uses : hashicorp /ghaction-import-gpg@v2.1.0
35
- env :
36
- GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
37
- PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
34
+ uses : crazy-max /ghaction-import-gpg@v5
35
+ with :
36
+ gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
37
+ passphrase : ${{ secrets.GPG_PASSPHRASE }}
38
38
- name : Run GoReleaser
39
- uses : goreleaser/goreleaser-action@v2
39
+ uses : goreleaser/goreleaser-action@v3
40
40
with :
41
41
version : latest
42
42
args : release --rm-dist
You can’t perform that action at this time.
0 commit comments