From 501af1418632d30f42c324813b69bf5ee447dd4c Mon Sep 17 00:00:00 2001 From: Andy Klimczak Date: Mon, 8 Feb 2021 13:36:00 -0500 Subject: [PATCH] Upgrade pipeline to use docker/setup-buildx-action Issue #563 --- .github/workflows/pipeline.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 870ceae89..ceccf53a6 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -157,13 +157,15 @@ jobs: env: DOCKER_IMAGE: ${{secrets.DOCKER_IMAGE}} steps: + - name: Set up QEMU + id: qemu + uses: docker/setup-qemu-action@v1 + if: env.DOCKER_IMAGE != '' + - name: Set up Docker Buildx id: buildx - uses: crazy-max/ghaction-docker-buildx@v1 + uses: docker/setup-buildx-action@v1 if: env.DOCKER_IMAGE != '' - with: - buildx-version: latest - qemu-version: latest - uses: actions/checkout@v2 if: env.DOCKER_IMAGE != ''