Skip to content

Commit e4dcd93

Browse files
authored
Hygiene: fix scorecard
1 parent 7e9a55f commit e4dcd93

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/scorecard.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ on:
33
push:
44
# Only the default branch is supported.
55
branches:
6-
- develop
6+
- develop
77
schedule:
88
# Weekly on Saturdays.
9-
- cron: '30 1 * * 6'
9+
- cron: '30 1 * * 6'
1010

1111
permissions: read-all
1212

@@ -26,13 +26,13 @@ jobs:
2626
with:
2727
egress-policy: audit
2828

29-
- name: "Checkout code"
29+
- name: 'Checkout code'
3030
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
with:
3232
persist-credentials: false
33-
33+
3434
- name: OSSF Scorecard action
35-
uses: ossf/scorecard-action@dde01de2fdfb29acf692f25ffb46c10a6655057e
35+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46
3636
with:
3737
# OUTPUT: Path to file to store results
3838
results_file: results.sarif
@@ -48,7 +48,7 @@ jobs:
4848
# Upload the results as artifacts (optional). Commenting out will disable
4949
# uploads of run results in SARIF format to the repository Actions tab.
5050
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
51-
- name: "Upload artifact"
51+
- name: 'Upload artifact'
5252
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5353
with:
5454
name: SARIF file
@@ -57,7 +57,7 @@ jobs:
5757

5858
# Upload the results to GitHub's code scanning dashboard (optional).
5959
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
60-
- name: "Upload to code-scanning"
60+
- name: 'Upload to code-scanning'
6161
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
6262
with:
6363
sarif_file: results.sarif

0 commit comments

Comments
 (0)