From 847c6befa7ce187c962fa6c3e6cd3c96e4da9565 Mon Sep 17 00:00:00 2001 From: Brian DeHamer Date: Mon, 4 Mar 2024 15:22:18 -0800 Subject: [PATCH] rename internal action (phase 2) (#19) Signed-off-by: Brian DeHamer --- action.yml | 2 +- generate-sbom-predicate/action.yml | 19 ------------------- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 generate-sbom-predicate/action.yml diff --git a/action.yml b/action.yml index ecb14bc..7c16afa 100644 --- a/action.yml +++ b/action.yml @@ -82,7 +82,7 @@ runs: path: ${{ inputs.scan-path }} output-file: ${{ steps.sbom-output.outputs.path }} format: ${{ steps.check-sbom-format.outputs.format }} - - uses: actions/attest-sbom/generate-sbom-predicate@main + - uses: actions/attest-sbom/predicate@main id: generate-sbom-predicate with: sbom-path: ${{ inputs.sbom-path || steps.sbom-output.outputs.path }} diff --git a/generate-sbom-predicate/action.yml b/generate-sbom-predicate/action.yml deleted file mode 100644 index 608e24e..0000000 --- a/generate-sbom-predicate/action.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: 'Generate SBOM Predicate' -description: 'Generate SBOM predicate' -author: 'GitHub' - -inputs: - sbom-path: - description: > - Path to the SBOM file to generate sbom statement - required: false -outputs: - predicate-path: - description: > - The path to the JSON-serialized of the attestation predicate - predicate-type: - description: > - URI identifying the type of the predicate. -runs: - using: node20 - main: ../dist/index.js