Skip to content

Attest 2.0 release

Attest 2.0 release #7

Workflow file for this run

name: Attest 2.0 release
on:
workflow_dispatch:
permissions:
contents: read
jobs:
attest:
name: Attest
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
contents: read
id-token: write
attestations: write
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout containerd
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: mkdir -p release-artifacts
- run: gh repo set-default austinvazquez/containerd
- name: Download artifacts
run: gh release download vnightly-11.25.24-16 -D ./release-artifacts
- name: Attest Artifacts
id: attest
uses: actions/attest-build-provenance@ef244123eb79f2f7a7e75d99086184180e6d0018 # v1.4.4
with:
subject-path: ./release-artifacts/*.tar.gz
- run: mv ${{ steps.attest.outputs.bundle-path }} containerd-nightly-11.25.24-16.2-attestation.intoto.jsonl
- name: Save artifact
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: containerd-nightly-11.25.24-16.2-attestation-${{ github.action_ref }}
path: ./containerd-nightly-11.25.24-16.2-attestation.intoto.jsonl