From 59c52cb6227ffe30e6a388fc50c5994b3130742f Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 5 Jul 2024 16:34:39 +1200 Subject: [PATCH] Fix checkout version Bump docker action versions Add explicit platforms for qemu setup --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a99d7a..7832cc7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@4.1.7 + uses: actions/checkout@v4.1.7 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 + uses: docker/setup-buildx-action@v3.4.0 - name: Set up QEMU - if: matrix.platform != 'linux/amd64' - uses: docker/setup-qemu-action@v3.0.0 + uses: docker/setup-qemu-action@v3.1.0 + with: + platforms: linux/arm64,linux/arm/v7 + - name: Log in to the GitHub container registry if: github.event_name != 'pull_request'