Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/bake.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -208,6 +208,7 @@ jobs:

const cosign = new Cosign();
await cosign.printVersion();
await exec.exec(cosign.binPath, ['initialize']);
-
name: Check dependencies signatures
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
Expand DownExpand Up@@ -731,6 +732,7 @@ jobs:

const cosign = new Cosign();
await cosign.printVersion();
await exec.exec(cosign.binPath, ['initialize']);

const containerName = `${Buildx.containerNamePrefix}${inpBuilderName}0`;

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -212,6 +212,7 @@ jobs:

const cosign = new Cosign();
await cosign.printVersion();
await exec.exec(cosign.binPath, ['initialize']);
-
name: Check dependencies signatures
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
Expand DownExpand Up@@ -622,6 +623,7 @@ jobs:

const cosign = new Cosign();
await cosign.printVersion();
await exec.exec(cosign.binPath, ['initialize']);

const containerName = `${Buildx.containerNamePrefix}${inpBuilderName}0`;

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/verify.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -78,6 +78,7 @@ jobs:

const cosign = new Cosign();
await cosign.printVersion();
await exec.exec(cosign.binPath, ['initialize']);
-
name: Login to registry
if: ${{ steps.vars.outputs.signed == 'true' && steps.vars.outputs.output-type == 'image' }}
Expand Down
Loading