Update actions/checkout action to v4 in ${packageFileDir} #95
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: PHP images | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'php/**' | |
- '.github/workflows/php.yml' | |
pull_request: | |
paths: | |
- 'php/**' | |
- '.github/workflows/php.yml' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
image: tonistiigi/binfmt:latest | |
platforms: amd64,arm64 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build PHP images | |
run: | | |
make php-bake-test |