2023-02-14 05:46:49 +03:00
|
|
|
# synced from @nextcloud/android-config
|
|
|
|
name: Scorecard supply-chain security
|
|
|
|
on:
|
|
|
|
branch_protection_rule:
|
|
|
|
schedule:
|
|
|
|
- cron: '32 23 * * 4'
|
|
|
|
push:
|
|
|
|
branches: [ "main", "master" ]
|
|
|
|
|
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
|
|
|
|
2023-06-08 10:39:30 +03:00
|
|
|
concurrency:
|
|
|
|
group: scorecard-supply-chain-security-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-02-14 05:46:49 +03:00
|
|
|
jobs:
|
|
|
|
analysis:
|
|
|
|
name: Scorecard analysis
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
# Needed to upload the results to code-scanning dashboard.
|
|
|
|
security-events: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: "Checkout code"
|
2023-09-23 11:57:44 +03:00
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2023-02-14 05:46:49 +03:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
|
|
|
|
- name: "Run analysis"
|
2023-06-24 20:29:11 +03:00
|
|
|
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
|
2023-02-14 05:46:49 +03:00
|
|
|
with:
|
|
|
|
results_file: results.sarif
|
|
|
|
results_format: sarif
|
|
|
|
publish_results: false
|
|
|
|
|
|
|
|
# Upload the results to GitHub's code scanning dashboard.
|
|
|
|
- name: "Upload to code-scanning"
|
2023-09-20 11:44:05 +03:00
|
|
|
uses: github/codeql-action/upload-sarif@6a28655e3dcb49cb0840ea372fd6d17733edd8a4 # v2.21.8
|
2023-02-14 05:46:49 +03:00
|
|
|
with:
|
|
|
|
sarif_file: results.sarif
|