Skip to content

chore(deps): bump the all-actions group across 1 directory with 2 updates #232

chore(deps): bump the all-actions group across 1 directory with 2 updates

chore(deps): bump the all-actions group across 1 directory with 2 updates #232

Workflow file for this run

name: Pull Request
# Run tests for any PRs.
on: pull_request
jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- arch: linux/amd64
archname: amd64
os: ubuntu-22.04
- arch: linux/arm/v7
archname: arm-v7
os: ubuntu-22.04-arm
- arch: linux/arm64
archname: arm64
os: ubuntu-22.04-arm
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
with:
image: 'tonistiigi/binfmt:latest'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Cache Docker layers
uses: actions/cache@v6
with:
path: /tmp/.buildx-cache
key: ${{ matrix.archname }}-buildx-${{ github.sha }}
restore-keys: |
${{ matrix.archname }}-buildx-
- name: Build
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
platforms: ${{ matrix.arch }}
push: false
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache