Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
run: |
chainloop attestation init --workflow $CHAINLOOP_WORKFLOW_NAME --project $CHAINLOOP_PROJECT
env:
# Needed for commit signature verification: https://docs.chainloop.dev/concepts/attestations#commit-verification
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Go
uses: actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/contracts/chainloop-vault-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ spec:
- ref: source-commit
with:
check_signature: yes
check_author_verified: yes
requirements:
- chainloop-best-practices/commit-signed
policyGroups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ spec:
- ref: source-commit
with:
check_signature: yes
check_author_verified: yes
requirements:
- chainloop-best-practices/commit-signed
materials:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/contracts/chainloop-vault-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ spec:
- ref: source-commit
with:
check_signature: yes
check_author_verified: yes
requirements:
- chainloop-best-practices/commit-signed
- ref: containers-with-sbom
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package_chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ jobs:
env:
COSIGN_PRIVATE_KEY: ${{secrets.COSIGN_KEY}}
COSIGN_PASSWORD: ${{secrets.COSIGN_PASSWORD}}
# Needed for commit signature verification: https://docs.chainloop.dev/concepts/attestations#commit-verification
Copy link
Member

Choose a reason for hiding this comment

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

thanks for adding these comments :)

GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Finish and Record Attestation
if: ${{ success() }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
CHAINLOOP_TOKEN: ${{ secrets.CHAINLOOP_TOKEN }}
CHAINLOOP_WORKFLOW_NAME: "release"
CHAINLOOP_PROJECT_NAME: "chainloop"
# Needed for commit signature verification: https://docs.chainloop.dev/concepts/attestations#commit-verification
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release:
name: Release CLI and control-plane/artifact-cas container images
Expand Down
Loading