Skip to content

Commit

Permalink
add and fix error in predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
AEnguerrand committed Dec 5, 2024
1 parent 0567f0c commit 6a872d0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-attest-predicate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Github Attest - Custom Predicate

on:
workflow_dispatch:
push:
#push:

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-attest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Github Attest

on:
workflow_dispatch:
push:
#push:

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sigtstorejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: SigStoreJS

on:
workflow_dispatch:
push:
#push:

permissions:
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/slsa-generator-nodejs-custom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
GITHUB_ACTOR_ID: ${{ github.actor_id }}
GITHUB_TRIGGERING_ACTOR_ID: ${{ github.triggering_actor }}
GITHUB_REPOSITORY_ID: ${{ github.repository_id }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_REPOSITORY_OWNER_ID: ${{ github.repository_owner_id}}
GITHUB_RUN_ID: ${{ github.run_id }}
GITHUB_RUN_ATTEMPT: ${{ github.run_attempt }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slsa-generator-nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: SLSA Generator NodeJS

on:
workflow_dispatch:
push:
#push:

permissions:
contents: read
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ cat <<EOF > predicate.json
"GITHUB_REF_TYPE": "$GITHUB_REF_TYPE",
"GITHUB_REPOSITORY": "$GITHUB_REPOSITORY",
"GITHUB_REPOSITORY_ID": "$GITHUB_REPOSITORY_ID",
"GITHUB_REPOSITORY_OWNER": "$GITHUB_REPOSITORY_OWNER",
"GITHUB_REPOSITORY_OWNER_ID": "$GITHUB_REPOSITORY_OWNER_ID",
"GITHUB_RUN_ATTEMPT": "$GITHUB_RUN_ATTEMPT",
"GITHUB_RUN_ID": "$GITHUB_RUN_ID",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aenguerrand/examplepackage12",
"version": "0.4.0",
"version": "0.5.0",
"description": "An example npm package for demonstration purposes.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6a872d0

Please sign in to comment.