Skip to content

chore(deps): update ubuntu:24.04 docker digest to 35b7fc7 #349

chore(deps): update ubuntu:24.04 docker digest to 35b7fc7

chore(deps): update ubuntu:24.04 docker digest to 35b7fc7 #349

Workflow file for this run

---
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@c1b31ff6c2d848b014596b6f919336d6ae89d8de # v1.9.1
with:
runner: '["ubuntu-latest"]'
files: |
**/Dockerfile
matrix: true
dir_names: true
docker-build:
needs: get-changed-files
if: ${{ needs.get-changed-files.outputs.files != '[]'}}
permissions:
contents: read
packages: read
strategy:
matrix:
paths: ${{fromJSON(needs.get-changed-files.outputs.files)}}
fail-fast: false
uses: strg-at/github-workflows/.github/workflows/docker-build.yaml@c1b31ff6c2d848b014596b6f919336d6ae89d8de # v1.9.1
with:
runner: '["ubuntu-latest"]'
file: ${{ matrix.paths }}/Dockerfile
context: ${{ matrix.paths }}