build(deps): bump actions/setup-node from 6 to 7 (#24) #26
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: OpenSSF Scorecard | |
| on: | |
| branch_protection_rule: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "42 4 * * 2" | |
| concurrency: | |
| group: website-scorecard-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze Repository Security Posture | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| id-token: write | |
| security-events: write | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Run OpenSSF Scorecard | |
| uses: ossf/scorecard-action@v2.4.3 | |
| with: | |
| publish_results: true | |
| results_file: scorecard-results.sarif | |
| results_format: sarif | |
| - name: Upload Scorecard SARIF | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: scorecard-results.sarif |