forked from microsoft/hve-core
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (56 loc) · 1.71 KB
/
Copy pathscorecard.yml
File metadata and controls
63 lines (56 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright (c) 2026 Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT
name: OpenSSF Scorecard
on:
schedule:
- cron: '0 3 * * 0' # Sundays at 3 AM UTC
push:
branches:
- main
workflow_run:
workflows:
- 'Stable Release Pipeline'
- 'Pre-Release Pipeline'
types:
- completed
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
jobs:
scorecard:
name: Scorecard Analysis
runs-on: ubuntu-latest
# Skip runs triggered by failed release pipelines
if: >-
github.event_name != 'workflow_run'
|| github.event.workflow_run.conclusion == 'success'
permissions:
security-events: write # Required for SARIF upload to Security tab
id-token: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run Scorecard
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
with:
results_file: results.sarif
results_format: sarif
publish_results: true
- name: Upload SARIF results
uses: github/codeql-action/upload-sarif@ce729e4d353d580e6cacd6a8cf2921b72e5e310a # v3.27.0
with:
sarif_file: results.sarif
category: openssf-scorecard
continue-on-error: true
- name: Upload artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: scorecard-results
path: results.sarif
retention-days: 90