File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout code
11
- uses : actions/checkout@v1
11
+ uses : actions/checkout@v2
12
12
13
13
- name : Setup Go
14
14
uses : actions/setup-go@v3
15
15
with :
16
- go-version : 1.19
16
+ go-version : ' 1.19'
17
17
18
18
- name : Setup QEMU
19
19
uses : docker/setup-qemu-action@v2
20
20
21
21
- name : Setup Docker Buildx
22
22
id : buildx
23
- uses : docker/setup-buildx-action@v1
23
+ uses : docker/setup-buildx-action@v2
24
24
25
25
- name : Setup Docker Hub
26
26
uses : docker/login-action@v2
35
35
echo tags="latest,${version}" >> $GITHUB_OUTPUT
36
36
37
37
- name : Build and Push
38
+ # 2023-05-07 note: the action documents:
39
+ # This repository is considered EXPERIMENTAL and under active development
40
+ # until further notice. It is subject to non-backward compatible changes
41
+ # or removal in any future version
42
+ # thus while v3.0.1 is the latest, I'm leaving this on v2 for an owner to
43
+ # investigate.
38
44
uses : docker/bake-action@v2
39
45
env :
40
46
TAGS : " ${{ steps.tags.outputs.tags }}"
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
steps :
12
12
- name : Setup Go
13
13
id : setup-go
14
- uses : actions/setup-go@v2
14
+ uses : actions/setup-go@v3
15
15
with :
16
- go-version : ^1.17
16
+ go-version : ' ^1.19 '
17
17
- name : Checkout source
18
- uses : actions/checkout@v2
18
+ uses : actions/checkout@v3
19
19
- name : Build
20
20
run : make build
21
21
- name : Test
You can’t perform that action at this time.
0 commit comments