lib/flattening: v0.1.3 #5
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: Build Platform Container Image | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
if: startsWith(github.event.release.tag_name, 'service/') | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: "Authenticate to Google Cloud (Push to Public registry)" | |
id: "gcp-auth" | |
uses: google-github-actions/auth@62cf5bd3e4211a0a0b51f2c6d6a37129d828611d | |
with: | |
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY }} | |
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
token_format: "access_token" | |
create_credentials_file: false | |
- name: Install Cosign | |
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da | |
- name: Install Trivy | |
uses: aquasecurity/setup-trivy@ff1b8b060f23b650436d419b5e13f67f5d4c3087 | |
with: | |
version: v0.57.1 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb | |
- name: 'Docker login to Artifact Registry' | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 | |
with: | |
registry: us-docker.pkg.dev | |
username: oauth2accesstoken | |
password: ${{ steps.gcp-auth.outputs.access_token }} | |
- id: docker_meta | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 | |
with: | |
images: ${{ secrets.DOCKER_REPO }} | |
tags: | | |
type=sha,format=long | |
type=match,pattern=service/v(\d+.\d+.\d+),group=1,prefix=v | |
type=match,pattern=service/v(\d+.\d+),group=1,prefix=v | |
labels: | | |
org.opencontainers.image.documentation=https://docs.opentdf.io | |
- name: Build and Push container images | |
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c | |
id: build-and-push | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
- name: Sign the images with GitHub OIDC Token | |
env: | |
DIGEST: ${{ steps.build-and-push.outputs.digest }} | |
TAGS: ${{ steps.docker_meta.outputs.tags }} | |
run: | | |
images="" | |
for tag in ${TAGS}; do | |
images+="${tag}@${DIGEST} " | |
done | |
# shellcheck disable=SC2086 | |
cosign sign --yes ${images} | |
- name: Generate Reports | |
run: | | |
trivy image --scanners vuln --format cyclonedx --output bom-cyclonedx.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | |
trivy image --format spdx-json --output bom-spdx.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | |
trivy image --format cosign-vuln --output cosign-vuln.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | |
- name: Cosign Attest SBOM | |
run: | | |
cosign attest --type cyclonedx --predicate bom-cyclonedx.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' | |
cosign attest --type spdxjson -predicate bom-spdx.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' | |
cosign attest --type vuln --predicate cosign-vuln.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' |