chore(deps): pin python docker tag to c46b0ae #98
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: docker-build | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
paths-ignore: | ||
- .github/** | ||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
get-changed-files: | ||
permissions: | ||
contents: read | ||
uses: strg-at/github-workflows/.github/workflows/get-changed-files.yaml@24d79a482f0d30cef0cfc87f97183ec42559d29b # v1.7.1 | ||
with: | ||
runner: '["ubuntu-latest"]' | ||
files: | | ||
**/Dockerfile | ||
matrix: true | ||
dir_names: true | ||
docker-build: | ||
Check failure on line 28 in .github/workflows/test-build.yaml GitHub Actions / docker-buildInvalid workflow file
|
||
needs: get-changed-files | ||
if: ${{ needs.get-changed-files.outputs.files != '[]'}} | ||
permissions: | ||
contents: read | ||
strategy: | ||
matrix: | ||
paths: ${{fromJSON(needs.get-changed-files.outputs.files)}} | ||
fail-fast: false | ||
uses: strg-at/github-workflows/.github/workflows/docker-build.yaml@24d79a482f0d30cef0cfc87f97183ec42559d29b # v1.7.1 | ||
with: | ||
runner: '["ubuntu-latest"]' | ||
file: ${{ matrix.paths }}/Dockerfile | ||
context: ${{ matrix.paths }} |