Skip to content

Commit 9cbb0dd

Browse files
committed
remove unneeded quotes
1 parent 0fd519a commit 9cbb0dd

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

.github/workflows-OFF/polaris-bridge-cli-win64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
env:
2121
BRIDGE_POLARIS_SERVERURL: ${{ vars.POLARIS_SERVERURL }}
2222
BRIDGE_POLARIS_ACCESSTOKEN: ${{ secrets.POLARIS_ACCESSTOKEN }}
23-
BRIDGE_POLARIS_ASSESSMENT_TYPES: 'SAST,SCA'
23+
BRIDGE_POLARIS_ASSESSMENT_TYPES: SAST,SCA
2424
BRIDGE_POLARIS_APPLICATION_NAME: chuckaude-${{ github.event.repository.name }}
2525
BRIDGE_POLARIS_PROJECT_NAME: ${{ github.event.repository.name }}
2626
BRIDGE_POLARIS_BRANCH_NAME: ${{ github.event.ref_name }}
27-
# INCLUDE_DIAGNOSTICS: 'true'
27+
# INCLUDE_DIAGNOSTICS: true
2828
run: |
2929
Invoke-WebRequest -Uri ${{ vars.BRIDGECLI_WIN64 }} -OutFile bridge.zip
3030
Expand-Archive -Path bridge.zip -DestinationPath ${{ runner.temp }} -Force

.github/workflows-OFF/srm-bridge-cli-win64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
env:
1111
BRIDGE_SRM_URL: ${{ vars.SRM_URL }}
1212
BRIDGE_SRM_APIKEY: ${{ secrets.SRM_APIKEY }}
13-
BRIDGE_SRM_ASSESSMENT_TYPES: 'SAST,SCA'
13+
BRIDGE_SRM_ASSESSMENT_TYPES: SAST,SCA
1414
BRIDGE_SRM_PROJECT_NAME: ${{ github.event.repository.name }}
1515
BRIDGE_SRM_BRANCH_NAME: ${{ github.event.ref_name }}
16-
# INCLUDE_DIAGNOSTICS: 'true'
16+
# INCLUDE_DIAGNOSTICS: true
1717
steps:
1818
- name: Checkout Source
1919
uses: actions/checkout@v4

.github/workflows/bd+coverity+srm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
blackducksca_url: ${{ vars.BLACKDUCK_URL }}
3333
blackducksca_token: ${{ secrets.BLACKDUCK_API_TOKEN }}
34-
# blackducksca_scan_failure_severities: 'BLOCKER'
34+
# blackducksca_scan_failure_severities: BLOCKER
3535
blackducksca_fixpr_enabled: true
3636
blackducksca_prComment_enabled: true
3737
blackducksca_reports_sarif_create: true

.github/workflows/bd-bridge-cli.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
BRIDGE_GITHUB_REPOSITORY_OWNER_NAME: ${{ github.repository_owner }}
1717
BRIDGE_GITHUB_REPOSITORY_NAME: ${{ github.event.repository.name }}
1818
BRIDGE_GITHUB_REPOSITORY_BRANCH_NAME: ${{ github.ref_name }}
19-
# INCLUDE_DIAGNOSTICS: 'true'
19+
# INCLUDE_DIAGNOSTICS: true
2020
steps:
2121
- name: Checkout Source
2222
uses: actions/checkout@v4
@@ -37,10 +37,10 @@ jobs:
3737
run: |
3838
curl -fLsS -o bridge.zip ${{ vars.BRIDGECLI_LINUX64 }} && unzip -qo -d ${{ runner.temp }} bridge.zip && rm -f bridge.zip
3939
${{ runner.temp }}/bridge-cli-bundle-linux64/bridge-cli --stage blackducksca \
40-
blackducksca.scan.full='true' \
41-
blackducksca.scan.failure.severities='BLOCKER' \
42-
blackducksca.fixpr.enabled='true' \
43-
blackducksca.reports.sarif.create='true'
40+
blackducksca.scan.full=true \
41+
blackducksca.scan.failure.severities=BLOCKER \
42+
blackducksca.fixpr.enabled=true \
43+
blackducksca.reports.sarif.create=true
4444
- name: Black Duck SCA PR Scan
4545
if: ${{ github.event_name == 'pull_request' }}
4646
env:
@@ -51,7 +51,7 @@ jobs:
5151
curl -fLsS -o bridge.zip ${{ vars.BRIDGECLI_LINUX64 }} && unzip -qo -d ${{ runner.temp }} bridge.zip && rm -f bridge.zip
5252
${{ runner.temp }}/bridge-cli-bundle-linux64/bridge-cli --stage blackducksca \
5353
blackducksca.scan.full='false' \
54-
blackducksca.automation.prcomment='true' \
54+
blackducksca.automation.prcomment=true \
5555
github.repository.pull.number=${{ github.event.number }}
5656
# - name: Save Logs
5757
# if: always()

.github/workflows/bd-ss-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
blackducksca_url: ${{ vars.BLACKDUCK_URL }}
3030
blackducksca_token: ${{ secrets.BLACKDUCK_API_TOKEN }}
31-
blackducksca_scan_failure_severities: 'BLOCKER'
31+
blackducksca_scan_failure_severities: BLOCKER
3232
blackducksca_fixpr_enabled: true
3333
blackducksca_prComment_enabled: true
3434
blackducksca_reports_sarif_create: true

.github/workflows/coverity-bridge-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
BRIDGE_GITHUB_REPOSITORY_OWNER_NAME: ${{ github.repository_owner }}
1818
BRIDGE_GITHUB_REPOSITORY_NAME: ${{ github.event.repository.name }}
1919
BRIDGE_GITHUB_REPOSITORY_BRANCH_NAME: ${{ github.ref_name }}
20-
# INCLUDE_DIAGNOSTICS: 'true'
20+
# INCLUDE_DIAGNOSTICS: true
2121
steps:
2222
- name: Checkout Source
2323
uses: actions/checkout@v4

.github/workflows/polaris-bridge-cli.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
env:
1313
BRIDGE_POLARIS_SERVERURL: ${{ vars.POLARIS_SERVERURL }}
1414
BRIDGE_POLARIS_ACCESSTOKEN: ${{ secrets.POLARIS_ACCESSTOKEN }}
15-
BRIDGE_POLARIS_ASSESSMENT_TYPES: 'SAST,SCA'
15+
BRIDGE_POLARIS_ASSESSMENT_TYPES: SAST,SCA
1616
BRIDGE_POLARIS_APPLICATION_NAME: chuckaude-${{ github.event.repository.name }}
1717
BRIDGE_POLARIS_PROJECT_NAME: ${{ github.event.repository.name }}
1818
BRIDGE_POLARIS_BRANCH_NAME: ${{ github.event.ref_name }}
1919
BRIDGE_GITHUB_USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
BRIDGE_GITHUB_REPOSITORY_OWNER_NAME: ${{ github.repository_owner }}
2121
BRIDGE_GITHUB_REPOSITORY_NAME: ${{ github.event.repository.name }}
2222
BRIDGE_GITHUB_REPOSITORY_BRANCH_NAME: ${{ github.ref_name }}
23-
# INCLUDE_DIAGNOSTICS: 'true'
23+
# INCLUDE_DIAGNOSTICS: true
2424
steps:
2525
- name: Checkout Source
2626
uses: actions/checkout@v4
@@ -35,13 +35,13 @@ jobs:
3535
run: |
3636
curl -fLsS -o bridge.zip ${{ vars.BRIDGECLI_LINUX64 }} && unzip -qo -d ${{ runner.temp }} bridge.zip && rm -f bridge.zip
3737
${{ runner.temp }}/bridge-cli-bundle-linux64/bridge-cli --stage polaris \
38-
polaris.reports.sarif.create='true'
38+
polaris.reports.sarif.create=true
3939
- name: Polaris PR Scan
4040
if: ${{ github.event_name == 'pull_request' }}
4141
run: |
4242
curl -fLsS -o bridge.zip ${{ vars.BRIDGECLI_LINUX64 }} && unzip -qo -d ${{ runner.temp }} bridge.zip && rm -f bridge.zip
4343
${{ runner.temp }}/bridge-cli-bundle-linux64/bridge-cli --stage polaris \
44-
polaris.prcomment.enabled='true' \
44+
polaris.prcomment.enabled=true \
4545
polaris.branch.parent.name=${{ github.event.base_ref }} \
4646
github.repository.pull.number=${{ github.event.number }}
4747
# - name: Save Logs

.github/workflows/polaris-ss-action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
with:
2525
polaris_server_url: ${{ vars.POLARIS_SERVERURL }}
2626
polaris_access_token: ${{ secrets.POLARIS_ACCESSTOKEN }}
27-
polaris_assessment_types: 'SAST,SCA'
27+
polaris_assessment_types: SAST,SCA
2828
polaris_application_name: chuckaude-${{ github.event.repository.name }}
29-
polaris_prComment_enabled: 'true'
30-
polaris_reports_sarif_create: 'true'
31-
polaris_upload_sarif_report: 'true'
29+
polaris_prComment_enabled: true
30+
polaris_reports_sarif_create: true
31+
polaris_upload_sarif_report: true
3232
github_token: ${{ secrets.GITHUB_TOKEN }}
3333
# include_diagnostics: true
3434
# - name: Save Logs

.github/workflows/srm-bridge-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
env:
1111
BRIDGE_SRM_URL: ${{ vars.SRM_URL }}
1212
BRIDGE_SRM_APIKEY: ${{ secrets.SRM_APIKEY }}
13-
BRIDGE_SRM_ASSESSMENT_TYPES: 'SAST,SCA'
13+
BRIDGE_SRM_ASSESSMENT_TYPES: SAST,SCA
1414
BRIDGE_SRM_PROJECT_NAME: ${{ github.event.repository.name }}
1515
BRIDGE_SRM_BRANCH_NAME: ${{ github.ref_name }}
1616
BRIDGE_SRM_BRANCH_PARENT: ${{ github.ref_name != github.event.repository.default_branch && github.event.repository.default_branch || '' }}
17-
# INCLUDE_DIAGNOSTICS: 'true'
17+
# INCLUDE_DIAGNOSTICS: true
1818
steps:
1919
- name: Checkout Source
2020
uses: actions/checkout@v4

.github/workflows/srm-ss-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
srm_url: ${{ vars.SRM_URL }}
2626
srm_apikey: ${{ secrets.SRM_APIKEY }}
27-
srm_assessment_types: 'SAST,SCA'
27+
srm_assessment_types: SAST,SCA
2828
srm_project_name: ${{ github.event.repository.name }}
2929
srm_branch_name: ${{ github.ref_name }}
3030
srm_branch_parent: ${{ github.ref_name != github.event.repository.default_branch && github.event.repository.default_branch || '' }}

0 commit comments

Comments
 (0)