Update QEMU and Buildx steps to resolve Node 16 deprecation warning #196
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: pr_auto | |
# This workflow is triggered automatically for pull requests and runs tests without credentials | |
# I.e. doesn't validate image caching, doesn't perform tests in Azure DevOps. | |
on: | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- README.md | |
- 'docs/**' | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
build-test: | |
name: "Build, test, publish" | |
uses: ./.github/workflows/ci_common.yml | |
with: | |
prNumber: ${{ github.event.pull_request.number }} | |
release: false | |
runFullTests: false | |
secrets: | |
AZDO_TOKEN: ${{ secrets.AZDO_TOKEN }} |