Skip to content

feat(deps): update docker.io/jenkins/jenkins docker tag to v2.479.2 #372

feat(deps): update docker.io/jenkins/jenkins docker tag to v2.479.2

feat(deps): update docker.io/jenkins/jenkins docker tag to v2.479.2 #372

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@fe8aec8df10849c97cc87d1d2e1448d03121aceb # v1.10.0
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@fe8aec8df10849c97cc87d1d2e1448d03121aceb # v1.10.0
with:
runner: '["ubuntu-latest"]'
file: ${{ matrix.paths }}/Dockerfile
context: ${{ matrix.paths }}