Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
contents: write # required for goreleaser to upload the release assets
packages: write # to push container images
pull-requests: write
id-token: write # required for SLSA provenance
attestations: write # required for SLSA provenance
env:
CHAINLOOP_TOKEN: ${{ secrets.CHAINLOOP_TOKEN }}
ATTESTATION_ID: ${{ needs.init_attestation.outputs.attestation_id }}
Expand Down Expand Up @@ -132,6 +134,48 @@ jobs:
chainloop attestation add --name $material_name --value $entry --kind ARTIFACT --attestation-id ${{ env.ATTESTATION_ID }}
done

- name: Calculate checksum for SLSA attestation
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd add a link explaining why we need to do this. Pointing to the issue that mentioned that only one container image is possible at the moment

run: |
# We're generating a checksum file for the SLSA attestation as a workaround for the current limitations of the SLSA attestation action.
# Until it's possible to include multiple container images and binaries in a single attestation, this approach serves as a temporary solution.
# An open issue suggests that if pushing the attestation to an OCI registry isn't required, using a checksum file is a valid alternative.
# Link: https://github.com/actions/attest-build-provenance/issues/454

# Create an empty checksum file
checksum_file="subjects-checksum.txt"
touch "$checksum_file"

# First the binaries
binaries=$(cat dist/artifacts.json | jq -r '.[] | select(.type=="Binary") | select(.name=="chainloop"| not) | "\(.path) \(.name)"')
echo "$binaries" | while IFS= read -r entry; do
# Extract the path and name from the entry
path=$(echo "$entry" | awk '{print $1}')
# Calculate the checksum of the file
checksum=$(sha256sum "$path" | awk '{print $1}')
# Get the name from the entry
name=$(echo "$entry" | awk '{print $2}')
# Add it to the checksum file
echo "$checksum *$name" >> $checksum_file
done

# Then the docker images
images=$(cat dist/artifacts.json | jq -r '.[] | select(.type=="Docker Manifest") | select(.name | endswith(":latest") | not) | "\(.extra.Digest | split("sha256:")[1]) \(.name)"')
echo "$images" | while IFS= read -r entry; do
# Extract the digest and name from the entry
name=$(echo "$entry" | awk '{print $2}')
digest=$(echo "$entry" | awk '{print $1}')
echo "$digest $name" >> $checksum_file
done

- uses: actions/attest-build-provenance@c074443f1aee8d4aeeae555aebba3282517141b2 # v2.2.3
id: slsa-attest
with:
subject-checksums: subjects-checksum.txt

- name: Attest SLSA attestation
run: |
chainloop attestation --name slsa-attestation add --value ${{ steps.slsa-attest.outputs.bundle-path }} --kind SLSA_PROVENANCE --attestation-id ${{ env.ATTESTATION_ID }}

- name: Bump Chart and Dagger Version
run: .github/workflows/utils/bump-chart-and-dagger-version.sh deployment/chainloop extras/dagger ${{ github.ref_name }}
- name: Bump Project Version
Expand Down
Loading