Skip to content

Commit

Permalink
ci: drop trailing whitespaces (#1292)
Browse files Browse the repository at this point in the history
This should help to prevent various linters from complaining about
trailing whitespaces when the file is copy-pasted to other repositories:
```
.github/workflows/scorecard-analysis.yml:2: trailing whitespace.
+on:
.github/workflows/scorecard-analysis.yml:18: trailing whitespace.
+
.github/workflows/scorecard-analysis.yml:40: trailing whitespace.
+
```
  • Loading branch information
evverx authored Nov 17, 2021
1 parent 8fae5b1 commit b4e3205
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scorecard-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Scorecard analysis workflow
on:
on:
push:
# Only the default branch is supported.
branches: [main, master]
Expand All @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
security-events: write

steps:
- name: "Checkout code"
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
Expand All @@ -37,7 +37,7 @@ jobs:
name: SARIF file
path: results.sarif
retention-days: 5

- name: "Upload SARIF results"
uses: github/codeql-action/upload-sarif@v1
with:
Expand Down

0 comments on commit b4e3205

Please sign in to comment.