This repository was archived by the owner on Mar 21, 2026. It is now read-only.
chore(deps): Bump distroless/static from 28efbe9 to 47b2d72 (#681)
#589
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scorecards supply-chain security | |
| on: | |
| # Only the default branch is supported. | |
| branch_protection_rule: | |
| schedule: | |
| - cron: '32 16 * * 4' | |
| push: | |
| branches: [ main ] | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| analysis: | |
| name: Scorecards analysis | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # Needed to upload the results to code-scanning dashboard. | |
| security-events: write | |
| actions: read | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: "Run analysis" | |
| uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 | |
| with: | |
| results_file: results.sarif | |
| results_format: sarif | |
| # Read-only PAT token. To create it, | |
| # follow the steps in https://github.com/ossf/scorecard-action#pat-token-creation. | |
| repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | |
| # Publish the results to enable scorecard badges. For more details, see | |
| # https://github.com/ossf/scorecard-action#publishing-results. | |
| # For private repositories, `publish_results` will automatically be set to `false`, | |
| # regardless of the value entered here. | |
| publish_results: true | |
| # Upload the results as artifacts (optional). | |
| - name: "Upload artifact" | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| with: | |
| name: SARIF file | |
| path: results.sarif | |
| retention-days: 5 | |
| # Upload the results to GitHub's code scanning dashboard. | |
| - name: "Upload to code-scanning" | |
| uses: github/codeql-action/upload-sarif@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.29.5 | |
| with: | |
| sarif_file: results.sarif |