mirror of
https://github.com/git-pkgs/proxy.git
synced 2026-08-23 12:24:57 -04:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7edec36d0d |
||
|
|
dc5c7fd3ba |
1 changed files with 43 additions and 0 deletions
43
.github/workflows/publish.yml
vendored
43
.github/workflows/publish.yml
vendored
|
|
@ -18,6 +18,7 @@ jobs:
|
||||||
permissions:
|
permissions:
|
||||||
packages: write
|
packages: write
|
||||||
contents: read
|
contents: read
|
||||||
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repo
|
- name: Check out the repo
|
||||||
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
|
||||||
|
|
@ -45,7 +46,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
images: ghcr.io/${{ github.repository }}
|
images: ghcr.io/${{ github.repository }}
|
||||||
|
|
||||||
|
- uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2
|
||||||
|
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
|
id: build
|
||||||
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a
|
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
|
@ -53,3 +57,42 @@ jobs:
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
provenance: mode=max
|
||||||
|
sbom: true
|
||||||
|
|
||||||
|
- name: Sign image by digest
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.build.outputs.digest }}
|
||||||
|
IMAGE: ghcr.io/${{ github.repository }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
[[ "$DIGEST" =~ ^sha256:[0-9a-f]{64}$ ]]
|
||||||
|
cosign sign --yes "${IMAGE}@${DIGEST}"
|
||||||
|
|
||||||
|
- name: Verify BuildKit attestations and extract SPDX predicates
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.build.outputs.digest }}
|
||||||
|
IMAGE: ghcr.io/${{ github.repository }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
reference="${IMAGE}@${DIGEST}"
|
||||||
|
docker buildx imagetools inspect "$reference" --format '{{ json .Provenance }}' > provenance.json
|
||||||
|
docker buildx imagetools inspect "$reference" --format '{{ json .SBOM }}' > sbom.json
|
||||||
|
|
||||||
|
for platform in linux/amd64 linux/arm64; do
|
||||||
|
jq -e --arg p "$platform" '.[$p].SLSA | type == "object" and length > 0' \
|
||||||
|
provenance.json >/dev/null
|
||||||
|
jq -e --arg p "$platform" '.[$p].SPDX' sbom.json > "sbom-${platform//\//-}.spdx.json"
|
||||||
|
done
|
||||||
|
|
||||||
|
- name: Attest platform SBOMs by digest
|
||||||
|
env:
|
||||||
|
DIGEST: ${{ steps.build.outputs.digest }}
|
||||||
|
IMAGE: ghcr.io/${{ github.repository }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
[[ "$DIGEST" =~ ^sha256:[0-9a-f]{64}$ ]]
|
||||||
|
reference="${IMAGE}@${DIGEST}"
|
||||||
|
for predicate in sbom-linux-amd64.spdx.json sbom-linux-arm64.spdx.json; do
|
||||||
|
cosign attest --yes --type spdxjson --predicate "$predicate" "$reference"
|
||||||
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue