Skip to content

Commit 597cd6b

Browse files
authored
Update repository config (#1298)
/cherry-pick Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 182d5eb commit 597cd6b

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- name: Check out code into the Go module directory
2323
uses: actions/checkout@v1
2424

25-
- name: Set up Docker Buildx
26-
id: buildx
27-
uses: crazy-max/ghaction-docker-buildx@v1
28-
with:
29-
buildx-version: latest
30-
qemu-version: latest
25+
- name: Set up QEMU
26+
id: qemu
27+
uses: docker/setup-qemu-action@v1
3128

3229
- name: Available platforms
33-
run: echo ${{ steps.buildx.outputs.platforms }}
30+
run: echo ${{steps.qemu.outputs.platforms}}
31+
32+
- name: Set up Docker Buildx
33+
uses: docker/setup-buildx-action@v1
3434

3535
- name: Prepare Host
3636
run: |

.github/workflows/e2e.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v1
1818

19+
- name: Set up QEMU
20+
id: qemu
21+
uses: docker/setup-qemu-action@v1
22+
23+
- name: Available platforms
24+
run: echo ${{steps.qemu.outputs.platforms}}
25+
1926
- name: Set up Docker Buildx
20-
id: buildx
21-
uses: crazy-max/ghaction-docker-buildx@v1
22-
with:
23-
buildx-version: latest
24-
qemu-version: latest
27+
uses: docker/setup-buildx-action@v1
2528

2629
- name: Checkout pr
2730
env:

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
run: |
1818
make version
1919
20-
- name: Set up Docker Buildx
21-
id: buildx
22-
uses: crazy-max/ghaction-docker-buildx@v1
23-
with:
24-
buildx-version: latest
25-
qemu-version: latest
20+
- name: Set up QEMU
21+
id: qemu
22+
uses: docker/setup-qemu-action@v1
2623

2724
- name: Available platforms
28-
run: echo ${{ steps.buildx.outputs.platforms }}
25+
run: echo ${{steps.qemu.outputs.platforms}}
26+
27+
- name: Set up Docker Buildx
28+
uses: docker/setup-buildx-action@v1
2929

3030
- name: Publish to GitHub Container Registry
3131
env:

0 commit comments

Comments
 (0)