From 5c347c05f2eace4a400bda6c6f480b5f59687e5e Mon Sep 17 00:00:00 2001 From: laurentsimon <64505099+laurentsimon@users.noreply.github.com> Date: Thu, 21 Mar 2024 00:32:08 -0700 Subject: [PATCH] chore: ref builders at main (#3417) # Summary ref builders at main ## Testing Process ... ## Checklist - [ ] Review the contributing [guidelines](./../CONTRIBUTING.md) - [ ] Add a reference to related issues in the PR description. - [ ] Update documentation if applicable. - [ ] Add unit tests if applicable. - [ ] Add changes to the [CHANGELOG](./../CHANGELOG.md) if applicable. --------- Signed-off-by: laurentsimon --- .github/actions/generate-builder/action.yml | 2 +- .../secure-download-artifact/action.yml | 2 +- .../actions/secure-download-folder/action.yml | 4 ++-- .../actions/secure-upload-artifact/action.yml | 2 +- .../actions/secure-upload-folder/action.yml | 2 +- .github/workflows/builder_bazel_slsa3.yml | 4 ++-- .../builder_container-based_slsa3.yml | 14 +++++------ .github/workflows/builder_go_slsa3.yml | 14 +++++------ .github/workflows/builder_gradle_slsa3.yml | 4 ++-- .github/workflows/builder_maven_slsa3.yml | 4 ++-- .github/workflows/builder_nodejs_slsa3.yml | 4 ++-- .github/workflows/delegator_generic_slsa3.yml | 24 +++++++++---------- .../delegator_lowperms-generic_slsa3.yml | 24 +++++++++---------- ...ate-container_based-predicate.schedule.yml | 2 +- .../workflows/generator_container_slsa3.yml | 4 ++-- .github/workflows/generator_generic_slsa3.yml | 8 +++---- .github/workflows/release.yml | 8 +++---- RELEASE.md | 2 +- actions/delegator/random/action.yml | 2 +- .../secure-attestations-download/action.yml | 2 +- .../secure-download-folder/action.yml | 2 +- .../delegator/secure-upload-folder/action.yml | 2 +- .../action.yml | 4 ++-- actions/gradle/publish/action.yml | 4 ++-- .../secure-download-attestations/action.yml | 2 +- .../gradle/secure-download-target/action.yml | 2 +- actions/maven/publish/action.yml | 10 ++++---- .../secure-download-attestations/action.yml | 2 +- .../maven/secure-download-target/action.yml | 2 +- actions/nodejs/publish/action.yml | 4 ++-- .../secure-attestations-download/action.yml | 2 +- .../nodejs/secure-package-download/action.yml | 2 +- internal/builders/bazel/action.yml | 4 ++-- internal/builders/gradle/action.yml | 4 ++-- internal/builders/maven/action.yml | 8 +++---- internal/builders/nodejs/action.yml | 4 ++-- 36 files changed, 95 insertions(+), 95 deletions(-) diff --git a/.github/actions/generate-builder/action.yml b/.github/actions/generate-builder/action.yml index 623dd7f8f0..4a224f1d05 100644 --- a/.github/actions/generate-builder/action.yml +++ b/.github/actions/generate-builder/action.yml @@ -62,7 +62,7 @@ runs: using: "composite" steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: ${{ inputs.repository }} ref: ${{ inputs.ref }} diff --git a/.github/actions/secure-download-artifact/action.yml b/.github/actions/secure-download-artifact/action.yml index 677c6d6aef..f8cf151298 100644 --- a/.github/actions/secure-download-artifact/action.yml +++ b/.github/actions/secure-download-artifact/action.yml @@ -85,7 +85,7 @@ runs: - name: Compute the hash id: compute - uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@main with: path: "${{ steps.validate-path.outputs.file_path }}" diff --git a/.github/actions/secure-download-folder/action.yml b/.github/actions/secure-download-folder/action.yml index bb549a4c4c..a4d81f0bd6 100644 --- a/.github/actions/secure-download-folder/action.yml +++ b/.github/actions/secure-download-folder/action.yml @@ -31,7 +31,7 @@ runs: steps: - name: Compute a random value id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - name: Download the artifact uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 @@ -41,7 +41,7 @@ runs: - name: Compute the hash id: compute - uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@main with: path: "${{ steps.rng.outputs.random }}/folder.tgz" diff --git a/.github/actions/secure-upload-artifact/action.yml b/.github/actions/secure-upload-artifact/action.yml index c41ca31387..984b39a614 100644 --- a/.github/actions/secure-upload-artifact/action.yml +++ b/.github/actions/secure-upload-artifact/action.yml @@ -32,7 +32,7 @@ runs: steps: - name: Compute binary hash id: compute-digest - uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/compute-sha256@main with: path: "${{ inputs.path }}" diff --git a/.github/actions/secure-upload-folder/action.yml b/.github/actions/secure-upload-folder/action.yml index 4b8def41d3..11294b3be6 100644 --- a/.github/actions/secure-upload-folder/action.yml +++ b/.github/actions/secure-upload-folder/action.yml @@ -60,7 +60,7 @@ runs: - name: Upload the artifact id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ inputs.name }}" path: "${{ steps.create.outputs.tarball-path }}" diff --git a/.github/workflows/builder_bazel_slsa3.yml b/.github/workflows/builder_bazel_slsa3.yml index 65dd99cb52..129a13f922 100644 --- a/.github/workflows/builder_bazel_slsa3.yml +++ b/.github/workflows/builder_bazel_slsa3.yml @@ -86,7 +86,7 @@ jobs: steps: - name: Generate the token id: generate - uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@main with: slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml" slsa-rekor-log-public: ${{ inputs.rekor-log-public }} @@ -100,6 +100,6 @@ jobs: id-token: write # For signing. contents: read # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@main with: slsa-token: ${{ needs.slsa-setup.outputs.slsa-token }} diff --git a/.github/workflows/builder_container-based_slsa3.yml b/.github/workflows/builder_container-based_slsa3.yml index 2a1d981078..76bf7044bf 100644 --- a/.github/workflows/builder_container-based_slsa3.yml +++ b/.github/workflows/builder_container-based_slsa3.yml @@ -165,7 +165,7 @@ jobs: steps: - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main # This detects the repository and ref of the reusable workflow. # For pull request, this gets the referenced slsa-github-generator workflow. @@ -180,7 +180,7 @@ jobs: steps: - name: Detect the builder ref id: detect - uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@main ################################################################### # # @@ -197,7 +197,7 @@ jobs: steps: - name: Generate builder binary id: generate - uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -230,7 +230,7 @@ jobs: steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -357,7 +357,7 @@ jobs: docker login "${untrusted_registry}" -u "${username}" -p "${password}" - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -485,7 +485,7 @@ jobs: provenance-sha256: ${{ steps.upload-signed.outputs.sha256 }} steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -575,7 +575,7 @@ jobs: if: inputs.upload-assets && (startsWith(github.ref, 'refs/tags/') || inputs.upload-tag-name != '') steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" diff --git a/.github/workflows/builder_go_slsa3.yml b/.github/workflows/builder_go_slsa3.yml index 95b90400a2..2224f740da 100644 --- a/.github/workflows/builder_go_slsa3.yml +++ b/.github/workflows/builder_go_slsa3.yml @@ -130,7 +130,7 @@ jobs: steps: - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main detect-env: outputs: @@ -142,7 +142,7 @@ jobs: steps: - name: Detect the builder ref id: detect - uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@main ################################################################### # # @@ -157,7 +157,7 @@ jobs: steps: - name: Generate builder binary id: generate - uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -191,7 +191,7 @@ jobs: needs: [builder, rng, detect-env] steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -238,7 +238,7 @@ jobs: needs: [builder, build-dry, rng, detect-env] steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -320,7 +320,7 @@ jobs: go-provenance-sha256: ${{ steps.sign-prov.outputs.signed-provenance-sha256 }} steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -378,7 +378,7 @@ jobs: if: inputs.upload-assets && (startsWith(github.ref, 'refs/tags/') || inputs.upload-tag-name != '') steps: - name: Checkout builder repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" diff --git a/.github/workflows/builder_gradle_slsa3.yml b/.github/workflows/builder_gradle_slsa3.yml index bc0208e927..53dea0476b 100644 --- a/.github/workflows/builder_gradle_slsa3.yml +++ b/.github/workflows/builder_gradle_slsa3.yml @@ -71,7 +71,7 @@ jobs: steps: - name: Generate the token id: generate - uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@main with: slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml" slsa-rekor-log-public: ${{ inputs.rekor-log-public }} @@ -85,7 +85,7 @@ jobs: id-token: write # For signing. contents: read # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@main with: slsa-token: ${{ needs.slsa-setup.outputs.slsa-token }} diff --git a/.github/workflows/builder_maven_slsa3.yml b/.github/workflows/builder_maven_slsa3.yml index d284948442..743a267944 100644 --- a/.github/workflows/builder_maven_slsa3.yml +++ b/.github/workflows/builder_maven_slsa3.yml @@ -67,7 +67,7 @@ jobs: steps: - name: Generate the token id: generate - uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@main with: slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml" slsa-rekor-log-public: "${{ inputs.rekor-log-public }}" @@ -81,7 +81,7 @@ jobs: id-token: write # For signing. contents: read # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@main with: slsa-token: "${{ needs.slsa-setup.outputs.slsa-token }}" diff --git a/.github/workflows/builder_nodejs_slsa3.yml b/.github/workflows/builder_nodejs_slsa3.yml index cef6cc7e62..93cd9c2bbd 100644 --- a/.github/workflows/builder_nodejs_slsa3.yml +++ b/.github/workflows/builder_nodejs_slsa3.yml @@ -89,7 +89,7 @@ jobs: steps: - name: Generate the token id: generate - uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@main with: slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml" slsa-rekor-log-public: ${{ inputs.rekor-log-public }} @@ -104,6 +104,6 @@ jobs: id-token: write # For signing. contents: read # For repo checkout of private repos. actions: read # For getting workflow run on private repos. - uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@main with: slsa-token: ${{ needs.slsa-setup.outputs.slsa-token }} diff --git a/.github/workflows/delegator_generic_slsa3.yml b/.github/workflows/delegator_generic_slsa3.yml index 1f9093916c..ede70d957d 100644 --- a/.github/workflows/delegator_generic_slsa3.yml +++ b/.github/workflows/delegator_generic_slsa3.yml @@ -84,7 +84,7 @@ jobs: steps: - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main # verify-token verifies the slsa token. verify-token: @@ -100,7 +100,7 @@ jobs: steps: - name: Verify token id: verify - uses: slsa-framework/slsa-github-generator/.github/actions/verify-token@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/verify-token@main with: slsa-workflow-recipient: "delegator_generic_slsa3.yml" slsa-unverified-token: ${{ inputs.slsa-token }} @@ -109,7 +109,7 @@ jobs: - name: Upload predicate id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_PREDICATE_FILE }}" path: ${{ env.SLSA_PREDICATE_FILE }} @@ -120,7 +120,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check private repos - uses: slsa-framework/slsa-github-generator/.github/actions/privacy-check@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/privacy-check@main with: error_message: "Repository is private. The workflow has halted in order to keep the repository name from being exposed in the public transparency log. Set 'private-repository' to override." override: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).builder.rekor_log_public }} @@ -147,7 +147,7 @@ jobs: echo "$RUNNER: $RUNNER" - name: Checkout the tool repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: ${{ needs.verify-token.outputs.tool-repository }} ref: ${{ needs.verify-token.outputs.tool-ref }} @@ -171,7 +171,7 @@ jobs: tree - name: Checkout the project repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@main with: fetch-depth: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).source.checkout.fetch_depth }} checkout-sha1: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).source.checkout.sha1 }} @@ -213,7 +213,7 @@ jobs: - name: Upload artifact layout file id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_ARTIFACTS_FILE }}" path: "${{ env.SLSA_ARTIFACTS_FILE }}" @@ -229,14 +229,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Download the artifact layout file - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_ARTIFACTS_FILE }}" path: "${{ env.SLSA_ARTIFACTS_FILE }}" sha256: ${{ needs.build-artifacts-ubuntu.outputs.artifacts-layout-sha256 }} - name: Download the predicate file - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_PREDICATE_FILE }}" path: ${{ env.SLSA_PREDICATE_FILE }} @@ -266,7 +266,7 @@ jobs: - name: Generate attestations id: attestations - uses: slsa-framework/slsa-github-generator/.github/actions/generate-attestations@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-attestations@main with: slsa-layout-file: ${{ env.SLSA_ARTIFACTS_FILE }} predicate-type: ${{ steps.predicate-type.outputs.predicate-type }} @@ -275,14 +275,14 @@ jobs: - name: Sign attestations id: sign - uses: slsa-framework/slsa-github-generator/.github/actions/sign-attestations@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/sign-attestations@main with: attestations: attestations output-folder: "${{ needs.rng.outputs.value }}-slsa-attestations" - name: Upload attestations id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: "${{ needs.rng.outputs.value }}-slsa-attestations" path: "${{ needs.rng.outputs.value }}-slsa-attestations" diff --git a/.github/workflows/delegator_lowperms-generic_slsa3.yml b/.github/workflows/delegator_lowperms-generic_slsa3.yml index b73e3c7acf..b3d0a68ad1 100644 --- a/.github/workflows/delegator_lowperms-generic_slsa3.yml +++ b/.github/workflows/delegator_lowperms-generic_slsa3.yml @@ -89,7 +89,7 @@ jobs: steps: - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main # verify-token verifies the slsa token. verify-token: @@ -105,7 +105,7 @@ jobs: steps: - name: Verify token id: verify - uses: slsa-framework/slsa-github-generator/.github/actions/verify-token@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/verify-token@main with: slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml" slsa-unverified-token: ${{ inputs.slsa-token }} @@ -114,7 +114,7 @@ jobs: - name: Upload predicate id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_PREDICATE_FILE }}" path: ${{ env.SLSA_PREDICATE_FILE }} @@ -125,7 +125,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check private repos - uses: slsa-framework/slsa-github-generator/.github/actions/privacy-check@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/privacy-check@main with: error_message: "Repository is private. The workflow has halted in order to keep the repository name from being exposed in the public transparency log. Set 'private-repository' to override." override: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).builder.rekor_log_public }} @@ -150,7 +150,7 @@ jobs: echo "$RUNNER: $RUNNER" - name: Checkout the tool repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: ${{ needs.verify-token.outputs.tool-repository }} ref: ${{ needs.verify-token.outputs.tool-ref }} @@ -174,7 +174,7 @@ jobs: tree - name: Checkout the project repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@main with: fetch-depth: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).source.checkout.fetch_depth }} checkout-sha1: ${{ fromJson(needs.verify-token.outputs.slsa-verified-token).source.checkout.sha1 }} @@ -216,7 +216,7 @@ jobs: - name: Upload artifact layout file id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_ARTIFACTS_FILE }}" path: "${{ env.SLSA_ARTIFACTS_FILE }}" @@ -232,14 +232,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Download the artifact layout file - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_ARTIFACTS_FILE }}" path: "${{ env.SLSA_ARTIFACTS_FILE }}" sha256: ${{ needs.build-artifacts-ubuntu.outputs.artifacts-layout-sha256 }} - name: Download the predicate file - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: "${{ needs.rng.outputs.value }}-${{ env.SLSA_PREDICATE_FILE }}" path: ${{ env.SLSA_PREDICATE_FILE }} @@ -269,7 +269,7 @@ jobs: - name: Generate attestations id: attestations - uses: slsa-framework/slsa-github-generator/.github/actions/generate-attestations@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-attestations@main with: slsa-layout-file: ${{ env.SLSA_ARTIFACTS_FILE }} predicate-type: ${{ steps.predicate-type.outputs.predicate-type }} @@ -278,14 +278,14 @@ jobs: - name: Sign attestations id: sign - uses: slsa-framework/slsa-github-generator/.github/actions/sign-attestations@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/sign-attestations@main with: attestations: attestations output-folder: "${{ needs.rng.outputs.value }}-slsa-attestations" - name: Upload attestations id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: "${{ needs.rng.outputs.value }}-slsa-attestations" path: "${{ needs.rng.outputs.value }}-slsa-attestations" diff --git a/.github/workflows/e2e.create-container_based-predicate.schedule.yml b/.github/workflows/e2e.create-container_based-predicate.schedule.yml index 950bc4c4df..f6bb413983 100644 --- a/.github/workflows/e2e.create-container_based-predicate.schedule.yml +++ b/.github/workflows/e2e.create-container_based-predicate.schedule.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Detect the builder ref id: detect - uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@main - name: Update the build definition # We use a build definition hard-coded in testadata. To ensure validation against # workflow context, we must update the source references. diff --git a/.github/workflows/generator_container_slsa3.yml b/.github/workflows/generator_container_slsa3.yml index aae13b4f5e..bf6ca8a8fe 100644 --- a/.github/workflows/generator_container_slsa3.yml +++ b/.github/workflows/generator_container_slsa3.yml @@ -112,7 +112,7 @@ jobs: - name: Detect the generator ref id: detect continue-on-error: true - uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@main - name: Final outcome id: final @@ -144,7 +144,7 @@ jobs: - name: Generate builder id: generate-builder continue-on-error: true - uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" diff --git a/.github/workflows/generator_generic_slsa3.yml b/.github/workflows/generator_generic_slsa3.yml index a27149adc2..a7ae79b38a 100644 --- a/.github/workflows/generator_generic_slsa3.yml +++ b/.github/workflows/generator_generic_slsa3.yml @@ -121,7 +121,7 @@ jobs: - name: Detect the generator ref id: detect continue-on-error: true - uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/detect-workflow-js@main - name: Final outcome id: final @@ -156,7 +156,7 @@ jobs: - name: Generate builder id: generate-builder continue-on-error: true - uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/generate-builder@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" @@ -189,7 +189,7 @@ jobs: id: download-file continue-on-error: true if: inputs.base64-subjects-as-file != '' - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: "${{ steps.metadata.outputs.artifact_name }}" path: "${{ steps.metadata.outputs.filename }}" @@ -268,7 +268,7 @@ jobs: - name: Checkout builder repository id: checkout-builder continue-on-error: true - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: "${{ needs.detect-env.outputs.repository }}" ref: "${{ needs.detect-env.outputs.ref }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4dae94ff67..4ae7e7658e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: id-token: write # For signing. contents: write # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@main with: go-version: "1.21" config-file: .github/workflows/configs-container/config-release.yml @@ -75,7 +75,7 @@ jobs: id-token: write # For signing. contents: write # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@main with: go-version: "1.21" config-file: .github/workflows/configs-generic/config-release.yml @@ -88,7 +88,7 @@ jobs: id-token: write # For signing. contents: write # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@main with: go-version: "1.21" config-file: .github/workflows/configs-go/config-release.yml @@ -101,7 +101,7 @@ jobs: id-token: write # For signing. contents: write # For asset uploads. actions: read # For the entrypoint. - uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@main with: go-version: "1.21" config-file: .github/workflows/configs-docker/config-release.yml diff --git a/RELEASE.md b/RELEASE.md index 50efecb23e..1f37505d11 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -549,7 +549,7 @@ Re-run the [adversarial builder tests](#adversarial-builder-tests) using the fin Send a PR to reference the Actions at `@main`. You can use: ```shell -find .github/workflows/ .github/actions/ actions/ -name '*.yaml' -o -name '*.yml' -type f | xargs sed -i "s/uses: slsa-framework\/slsa-github-generator\/\(.*\)@${BUILDER_TAG}/uses: slsa-framework\/slsa-github-generator\/\1@main/" +find .github/workflows/ .github/actions/ actions/ internal/builders/ -name '*.yaml' -o -name '*.yml' -type f | xargs sed -i "s/uses: slsa-framework\/slsa-github-generator\/\(.*\)@${BUILDER_TAG}/uses: slsa-framework\/slsa-github-generator\/\1@main/" find actions/maven/ internal/builders/maven/ -name '*.yaml' -o -name '*.yml' -type f | xargs sed -i "s/\(ref:[ ]*\)$BUILDER_TAG/\1main/" ``` diff --git a/actions/delegator/random/action.yml b/actions/delegator/random/action.yml index ab0a2b3325..9f4c93cead 100644 --- a/actions/delegator/random/action.yml +++ b/actions/delegator/random/action.yml @@ -31,4 +31,4 @@ runs: steps: - name: Generate random value id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main diff --git a/actions/delegator/secure-attestations-download/action.yml b/actions/delegator/secure-attestations-download/action.yml index d7a7e04aa7..bc0ba8e63d 100644 --- a/actions/delegator/secure-attestations-download/action.yml +++ b/actions/delegator/secure-attestations-download/action.yml @@ -30,7 +30,7 @@ runs: using: "composite" steps: - name: Download the attestations - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/delegator/secure-download-folder/action.yml b/actions/delegator/secure-download-folder/action.yml index 052a54111b..2d7d4ff18a 100644 --- a/actions/delegator/secure-download-folder/action.yml +++ b/actions/delegator/secure-download-folder/action.yml @@ -30,7 +30,7 @@ runs: using: "composite" steps: - name: Download the folder - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/delegator/secure-upload-folder/action.yml b/actions/delegator/secure-upload-folder/action.yml index a498af5c62..3e673b970c 100644 --- a/actions/delegator/secure-upload-folder/action.yml +++ b/actions/delegator/secure-upload-folder/action.yml @@ -34,7 +34,7 @@ runs: steps: - name: Upload the folder id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/generator/generic/create-base64-subjects-from-file/action.yml b/actions/generator/generic/create-base64-subjects-from-file/action.yml index ed603def2c..eed900be4d 100644 --- a/actions/generator/generic/create-base64-subjects-from-file/action.yml +++ b/actions/generator/generic/create-base64-subjects-from-file/action.yml @@ -28,7 +28,7 @@ runs: steps: - name: Generate random value id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - name: Generate random name id: name @@ -49,7 +49,7 @@ runs: - name: Upload file id: upload - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main with: name: "${{ steps.name.outputs.artifact_name }}" path: "${{ inputs.path }}" diff --git a/actions/gradle/publish/action.yml b/actions/gradle/publish/action.yml index 4d7d212744..5fef2d7b46 100644 --- a/actions/gradle/publish/action.yml +++ b/actions/gradle/publish/action.yml @@ -66,14 +66,14 @@ runs: gpg-private-key: ${{ inputs.gpg-private-key }} gpg-passphrase: GPG_KEY_PASS - name: Download the slsa attestation - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: "${{ inputs.provenance-download-name }}" path: ./ sha256: "${{ inputs.provenance-download-sha256 }}" - name: Download the build dir - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: "${{ inputs.build-download-name }}" path: ./ diff --git a/actions/gradle/secure-download-attestations/action.yml b/actions/gradle/secure-download-attestations/action.yml index b094a510f4..71050579bc 100644 --- a/actions/gradle/secure-download-attestations/action.yml +++ b/actions/gradle/secure-download-attestations/action.yml @@ -29,7 +29,7 @@ runs: using: "composite" steps: - name: Download the attestation directory - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/gradle/secure-download-target/action.yml b/actions/gradle/secure-download-target/action.yml index 0c23ec9b5a..7eb3e346a9 100644 --- a/actions/gradle/secure-download-target/action.yml +++ b/actions/gradle/secure-download-target/action.yml @@ -29,7 +29,7 @@ runs: using: "composite" steps: - name: Download the target directory - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/maven/publish/action.yml b/actions/maven/publish/action.yml index c11fe6ac3b..e7e24fd0ad 100644 --- a/actions/maven/publish/action.yml +++ b/actions/maven/publish/action.yml @@ -45,7 +45,7 @@ runs: using: "composite" steps: - name: Checkout the project repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@v1.9.1-rc.0 # needed because we run javadoc and sources. + uses: slsa-framework/slsa-github-generator/.github/actions/secure-project-checkout@main # needed because we run javadoc and sources. - name: Set up Java for publishing to Maven Central Repository uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 env: @@ -62,24 +62,24 @@ runs: gpg-passphrase: GPG_KEY_PASS - name: Download the slsa attestation - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: "${{ inputs.provenance-download-name }}" path: slsa-attestations sha256: "${{ inputs.provenance-download-sha256 }}" - name: Download the target dir - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: "${{ inputs.target-download-name }}" path: ./ sha256: "${{ inputs.target-download-sha256 }}" - name: Checkout the framework repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: slsa-framework/slsa-github-generator - ref: v1.9.1-rc.0 + ref: main path: __BUILDER_CHECKOUT_DIR__ - name: Publish to the Maven Central Repository diff --git a/actions/maven/secure-download-attestations/action.yml b/actions/maven/secure-download-attestations/action.yml index b094a510f4..71050579bc 100644 --- a/actions/maven/secure-download-attestations/action.yml +++ b/actions/maven/secure-download-attestations/action.yml @@ -29,7 +29,7 @@ runs: using: "composite" steps: - name: Download the attestation directory - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/maven/secure-download-target/action.yml b/actions/maven/secure-download-target/action.yml index 0c23ec9b5a..7eb3e346a9 100644 --- a/actions/maven/secure-download-target/action.yml +++ b/actions/maven/secure-download-target/action.yml @@ -29,7 +29,7 @@ runs: using: "composite" steps: - name: Download the target directory - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/nodejs/publish/action.yml b/actions/nodejs/publish/action.yml index c20d1a108d..af09db46b3 100644 --- a/actions/nodejs/publish/action.yml +++ b/actions/nodejs/publish/action.yml @@ -56,14 +56,14 @@ runs: echo "path=${temp_dir}" >>"${GITHUB_OUTPUT}" - name: Download tarball - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: ${{ inputs.package-download-name }} path: "${{ steps.temp-dir.outputs.path }}/${{ inputs.package-name }}" sha256: ${{ inputs.package-download-sha256 }} - name: Download provenance - uses: slsa-framework/slsa-github-generator/actions/nodejs/secure-attestations-download@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/actions/nodejs/secure-attestations-download@main with: name: ${{ inputs.provenance-download-name }} path: "${{ steps.temp-dir.outputs.path }}" diff --git a/actions/nodejs/secure-attestations-download/action.yml b/actions/nodejs/secure-attestations-download/action.yml index adf63d6107..eeaa067c81 100644 --- a/actions/nodejs/secure-attestations-download/action.yml +++ b/actions/nodejs/secure-attestations-download/action.yml @@ -30,7 +30,7 @@ runs: using: "composite" steps: - name: Download the attestations - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-folder@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/actions/nodejs/secure-package-download/action.yml b/actions/nodejs/secure-package-download/action.yml index 705f688c04..c3c83b166e 100644 --- a/actions/nodejs/secure-package-download/action.yml +++ b/actions/nodejs/secure-package-download/action.yml @@ -29,7 +29,7 @@ runs: using: "composite" steps: - name: Download the package - uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-download-artifact@main with: name: ${{ inputs.name }} path: ${{ inputs.path }} diff --git a/internal/builders/bazel/action.yml b/internal/builders/bazel/action.yml index 83ee0df5ea..191ec0fa8f 100644 --- a/internal/builders/bazel/action.yml +++ b/internal/builders/bazel/action.yml @@ -71,11 +71,11 @@ runs: # when multiple workflows run concurrently. - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - name: Generate Artifacts id: generate-artifacts - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: "${{ steps.rng.outputs.random }}-binaries" path: "./bazel_builder_binaries_to_upload_to_gh_7bc972367cb286b7f36ab4457f06e369" # path-to-artifact(s) diff --git a/internal/builders/gradle/action.yml b/internal/builders/gradle/action.yml index 274beb9b5e..7c2d693cee 100644 --- a/internal/builders/gradle/action.yml +++ b/internal/builders/gradle/action.yml @@ -101,7 +101,7 @@ runs: # when multiple workflows run concurrently. - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - name: Put release artifacts in one directory shell: bash @@ -128,7 +128,7 @@ runs: [[ "${PROJECT_ROOT}" -ef "${GITHUB_WORKSPACE}" ]] || mv "${PROJECT_ROOT}"/build "${GITHUB_WORKSPACE}"/ - name: Upload build dir id: upload-build-dir - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: "${{ steps.rng.outputs.random }}-build" path: build diff --git a/internal/builders/maven/action.yml b/internal/builders/maven/action.yml index ad024e0295..4fd7a113f6 100644 --- a/internal/builders/maven/action.yml +++ b/internal/builders/maven/action.yml @@ -63,10 +63,10 @@ runs: distribution: temurin java-version: ${{ fromJson(inputs.slsa-workflow-inputs).jdk-version }} - name: Checkout the tool repository - uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-builder-checkout@main with: repository: slsa-framework/slsa-github-generator - ref: v1.9.1-rc.0 + ref: main path: __BUILDER_CHECKOUT_DIR__ - name: Run mvn package shell: bash @@ -113,11 +113,11 @@ runs: # when multiple workflows run concurrently. - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - name: Upload target id: upload-target - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-folder@main with: name: "${{ steps.rng.outputs.random }}-target" path: target diff --git a/internal/builders/nodejs/action.yml b/internal/builders/nodejs/action.yml index a297566d59..f605d6207b 100644 --- a/internal/builders/nodejs/action.yml +++ b/internal/builders/nodejs/action.yml @@ -85,9 +85,9 @@ runs: # when multiple workflows run concurrently. - name: Generate random 16-byte value (32-char hex encoded) id: rng - uses: slsa-framework/slsa-github-generator/.github/actions/rng@v1.9.1-rc.0 + uses: slsa-framework/slsa-github-generator/.github/actions/rng@main - - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@v1.9.1-rc.0 + - uses: slsa-framework/slsa-github-generator/.github/actions/secure-upload-artifact@main id: upload with: name: "${{ steps.rng.outputs.random }}-package.tgz"