Bump the github-actions group with 3 updates #1217
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Multi-arch Builds | |
on: | |
pull_request: | |
permissions: {} | |
env: | |
DEBUG_PRINT: true | |
jobs: | |
check-multiarch: | |
name: Check the multi-arch builds | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 | |
- name: Set up QEMU (to support building on non-native architectures) | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 | |
- name: Set up buildx | |
uses: docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 | |
- name: Build the multi-arch images | |
run: make multiarch-images | |
- name: Check that we actually build multi-arch images | |
run: bash -c '[ "$(echo package/*.tar)" != "package/*.tar" ]' |