Skip to content

Bump actions/checkout from 3.6.0 to 4.0.0 #1217

Bump actions/checkout from 3.6.0 to 4.0.0

Bump actions/checkout from 3.6.0 to 4.0.0 #1217

Workflow file for this run

---
name: Multi-arch Builds
on:
pull_request:
permissions: {}
jobs:
check-multiarch:
name: Check the multi-arch builds
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Set up QEMU (to support building on non-native architectures)
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7
- 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" ]'