From 9fabc159288ebb27cec09ec0bee19247e565c064 Mon Sep 17 00:00:00 2001 From: "m.semalaiappan" Date: Fri, 5 Apr 2024 21:11:33 -0500 Subject: [PATCH 1/2] Scorecard supply-chain security Workflow Added --- .../Scorecard supply-chain security.yml | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .github/workflows/Scorecard supply-chain security.yml diff --git a/.github/workflows/Scorecard supply-chain security.yml b/.github/workflows/Scorecard supply-chain security.yml new file mode 100644 index 0000000000..0b181a5738 --- /dev/null +++ b/.github/workflows/Scorecard supply-chain security.yml @@ -0,0 +1,66 @@ +# Originally sourced from GitHub with implicit lack of license + +name: Scorecard supply-chain security +on: + pull_request: + branches: [main, 'b-v*-patch*','feature-*'] + push: + branches: [main, 'b-v*-patch*','feature-*'] + workflow_dispatch: + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: Checkout code + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + with: + persist-credentials: false + + - name: Run analysis + uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 + with: + results_file: scorecard.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. + #repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: false + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: Upload artifact + uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 + with: + name: Scorecard SARIF file + path: scorecard.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard. + - name: Upload to code-scanning + uses: github/codeql-action/upload-sarif@cf7e9f23492505046de9a37830c3711dd0f25bb3 # codeql-bundle-v2.16.2 + with: + sarif_file: scorecard.sarif From 7161cfd563d8089799f83e9f2def21ddc8d62b05 Mon Sep 17 00:00:00 2001 From: "m.semalaiappan" Date: Wed, 10 Apr 2024 08:09:17 -0500 Subject: [PATCH 2/2] schedule Trigger Added --- .github/workflows/Scorecard supply-chain security.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Scorecard supply-chain security.yml b/.github/workflows/Scorecard supply-chain security.yml index 0b181a5738..bbff1fa164 100644 --- a/.github/workflows/Scorecard supply-chain security.yml +++ b/.github/workflows/Scorecard supply-chain security.yml @@ -2,8 +2,8 @@ name: Scorecard supply-chain security on: - pull_request: - branches: [main, 'b-v*-patch*','feature-*'] + schedule: + - cron: '15 23 * * 0' push: branches: [main, 'b-v*-patch*','feature-*'] workflow_dispatch: