Skip to content

Commit 988d71c

Browse files
committed
style: standardize quote style in workflow configuration values
- Change single quotes to double quotes for scan-type, format, exit-code, and severity values in the workflow configuration Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent 41abaa2 commit 988d71c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/testing.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
uses: codecov/codecov-action@v5
6464
with:
6565
flags: ${{ matrix.os }},go-${{ matrix.go }}
66+
6667
vulnerability-scanning:
6768
runs-on: ubuntu-latest
6869
steps:
@@ -73,8 +74,8 @@ jobs:
7374
- name: Run Trivy vulnerability scanner in repo mode
7475
uses: aquasecurity/[email protected]
7576
with:
76-
scan-type: 'fs'
77+
scan-type: "fs"
7778
ignore-unfixed: true
78-
format: 'table'
79-
exit-code: '1'
80-
severity: 'CRITICAL,HIGH,MEDIUM'
79+
format: "table"
80+
exit-code: "1"
81+
severity: "CRITICAL,HIGH,MEDIUM"

0 commit comments

Comments
 (0)