Skip to content

Commit

Permalink
Create Scorecard.yml (#1)
Browse files Browse the repository at this point in the history
Scorecard analysis file.
  • Loading branch information
danijelgalic committed Nov 4, 2024
1 parent 2aeec98 commit 55ab056
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/Scorecard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Scorecard analysis
on:
branch_protection_rule:
push:
branches:
- master
permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
security-events: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Run analysis
uses: ossf/scorecard-action@v2.4.0
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: Upload artifact
uses: actions/upload-artifact@v4.4.3
with:
name: SARIF file
path: results.sarif
retention-days: 5
- name: Upload SARIF results to code scanning
uses: github/codeql-action/upload-sarif@v3.27.0
with:
sarif_file: results.sarif

0 comments on commit 55ab056

Please sign in to comment.