Skip to content

Disable permissions for pages workflow by default (#422) #8

Disable permissions for pages workflow by default (#422)

Disable permissions for pages workflow by default (#422) #8

Workflow file for this run

name: Scorecard
on:
push:
branches:
- main
schedule:
- cron: 32 12 * * 2
permissions: read-all
jobs:
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
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ossf/scorecard-action@v2.3.1
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- uses: actions/upload-artifact@v4
with:
name: SARIF file
path: results.sarif
retention-days: 5
- uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif