don't output findings if there were no files #41
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: Build Tools | |
on: | |
push: | |
branches: [ 'main' ] | |
tags: [ 'v*' ] | |
pull_request: | |
branches: [ "**" ] | |
paths: | |
# only rebuild if something related to our docker images changed | |
- tools/** | |
- workflows/build-tools.yml | |
- source/tools/** | |
- publish/actions/container/** | |
workflow_dispatch: | |
# Make sure we cancel any outstanding workflows that are outdated. | |
# This should save time & money. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-push: | |
permissions: | |
contents: read | |
actions: read # for detecting the Github Actions environment. | |
id-token: write # for creating OIDC tokens for signing. | |
packages: write # for uploading attestations. | |
strategy: | |
fail-fast: false | |
matrix: | |
tool: [source/tools/osv, source/tools/zizmor, tools/cosign, tools/osv_sbom] | |
uses: tomhennen/wrangle/.github/workflows/build_and_publish_container.yml@main | |
with: | |
path: ${{ matrix.tool }} | |
imagename: ghcr.io/${{ github.repository }}/${{ matrix.tool }} | |
registry: 'ghcr.io' | |
publish_provenance_for_private_repo: true | |
secrets: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} |