Merge pull request #2019 from praw-dev/fixes #243
This file contains 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
jobs: | |
analysis: | |
name: Scorecards analysis | |
permissions: | |
actions: read | |
contents: read | |
id-token: write | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0 | |
with: | |
persist-credentials: false | |
- name: Run analysis | |
uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | |
publish_results: true | |
- name: Upload artifact | |
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1 | |
with: | |
name: SARIF file | |
path: results.sarif | |
retention-days: 5 | |
- name: Upload to code-scanning | |
uses: github/codeql-action/upload-sarif@5f532563584d71fdef14ee64d17bafb34f751ce5 # v1.0.26 | |
with: | |
sarif_file: results.sarif | |
name: Scorecards supply-chain security | |
on: | |
branch_protection_rule: | |
push: | |
branches: [ master ] | |
schedule: | |
- cron: 30 1 * * 6 | |
permissions: read-all |