ci: remove support for amv7 in our docker packages #4190
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
name: OSSF Scorecards | |
permissions: | |
contents: read | |
on: | |
branch_protection_rule: | |
push: | |
branches: | |
- develop | |
schedule: | |
# At 1am on Monday | |
- cron: '0 1 * * 1' | |
jobs: | |
analyze: | |
name: OSSF Scorecards - analyze | |
runs-on: ubuntu-20.04 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write # Needed to upload results to code-scanning dashboard. | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
persist-credentials: false | |
- name: Analyze | |
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 | |
with: | |
results_file: results.sarif | |
results_format: sarif | |
repo_token: ${{ secrets.SCORECARD_READ_TOKEN }} | |
publish_results: true | |
- name: "Upload to code-scanning" | |
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f | |
with: | |
sarif_file: results.sarif |