Skip to content

Commit 9eaa5f7

Browse files
authored
Updated the Docker workflows to use the current version of buildx (#775)
Signed-off-by: Govind Kamat <[email protected]>
1 parent 6e87268 commit 9eaa5f7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker-build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
matrix:
2121
platform: ['linux/amd64', 'linux/arm64']
2222
steps:
23+
- name: Check out repository
24+
uses: actions/checkout@v4
25+
2326
- name: Set up QEMU
2427
uses: docker/setup-qemu-action@v3
2528
# Workaround for a memory allocation layout bug in QEMU,
@@ -30,9 +33,6 @@ jobs:
3033

3134
- name: Set up Docker Buildx
3235
uses: docker/setup-buildx-action@v3
33-
with:
34-
version: 'v0.9.1'
35-
- uses: actions/checkout@v4
3636

3737
- name: Docker Build ${{ matrix.platform }}
3838
run: |

.github/workflows/docker-push-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
matrix:
1717
platform: ['linux/amd64', 'linux/arm64']
1818
steps:
19+
- name: Check out repository
20+
uses: actions/checkout@v4
21+
1922
- name: Set up QEMU
2023
uses: docker/setup-qemu-action@v3
2124
# Workaround for a memory allocation layout bug in QEMU,
@@ -26,9 +29,6 @@ jobs:
2629

2730
- name: Set up Docker Buildx
2831
uses: docker/setup-buildx-action@v3
29-
with:
30-
version: 'v0.9.1'
31-
- uses: actions/checkout@v4
3232

3333
- name: Configure Role to Acquire Credentials
3434
uses: aws-actions/configure-aws-credentials@v4

0 commit comments

Comments
 (0)