Skip to content

Commit 2dcafa8

Browse files
committed
remove unneeded save Bridge logs step when using BDSS action
1 parent 93aee99 commit 2dcafa8

14 files changed

+2
-65
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,3 @@ jobs:
5252
blackducksca_prComment_enabled: true
5353
github_token: ${{ secrets.GITHUB_TOKEN }}
5454
# include_diagnostics: true
55-
# - name: Save Logs
56-
# if: always()
57-
# uses: actions/upload-artifact@v4
58-
# with:
59-
# name: bridge-logs
60-
# path: ${{ github.workspace }}/.bridge
61-
# include-hidden-files: true

.github/workflows-OFF/coverity-ss-action-split.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,3 @@ jobs:
4444
github_token: ${{ secrets.GITHUB_TOKEN }}
4545
# coverity_local: true
4646
# include_diagnostics: true
47-
# - name: Save Logs
48-
# if: always()
49-
# uses: actions/upload-artifact@v4
50-
# with:
51-
# name: bridge-logs
52-
# path: ${{ github.workspace }}/.bridge
53-
# include-hidden-files: true

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
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
2827
run: |
2928
Invoke-WebRequest -Uri ${{ vars.BRIDGECLI_WIN64 }} -OutFile bridge.zip
3029
Expand-Archive -Path bridge.zip -DestinationPath ${{ runner.temp }} -Force

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
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
1716
steps:
1817
- name: Checkout Source
1918
uses: actions/checkout@v4

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,3 @@ jobs:
6262
target-branch-name: ${{ github.ref_name }}
6363
source-and-binaries-glob: './**'
6464
wait-for-completion: true
65-
# - name: Save Logs
66-
# if: always()
67-
# uses: actions/upload-artifact@v4
68-
# with:
69-
# name: bridge-logs
70-
# path: ${{ github.workspace }}/.bridge
71-
# include-hidden-files: true

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ 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
2019
steps:
2120
- name: Checkout Source
2221
uses: actions/checkout@v4
@@ -50,7 +49,7 @@ jobs:
5049
run: |
5150
curl -fLsS -o bridge.zip ${{ vars.BRIDGECLI_LINUX64 }} && unzip -qo -d ${{ runner.temp }} bridge.zip && rm -f bridge.zip
5251
${{ runner.temp }}/bridge-cli-bundle-linux64/bridge-cli --stage blackducksca \
53-
blackducksca.scan.full='false' \
52+
blackducksca.scan.full=false \
5453
blackducksca.automation.prcomment=true \
5554
github.repository.pull.number=${{ github.event.number }}
5655
# - name: Save Logs

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,3 @@ jobs:
3535
blackducksca_upload_sarif_report: true
3636
github_token: ${{ secrets.GITHUB_TOKEN }}
3737
# include_diagnostics: true
38-
# - name: Save Logs
39-
# if: always()
40-
# uses: actions/upload-artifact@v4
41-
# with:
42-
# name: bridge-logs
43-
# path: ${{ github.workspace }}/.bridge
44-
# include-hidden-files: true

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
BRIDGE_GITHUB_REPOSITORY_BRANCH_NAME: ${{ github.ref_name }}
2020
BRIDGE_COVERITY_BUILD_COMMAND: mvn -B -DskipTests package
2121
BRIDGE_COVERITY_CLEAN_COMMAND: mvn -B clean
22-
# INCLUDE_DIAGNOSTICS: true
22+
# BRIDGE_COVERITY_LOCAL: true
2323
steps:
2424
- name: Checkout Source
2525
uses: actions/checkout@v4
@@ -37,7 +37,6 @@ jobs:
3737
coverity.connect.project.name=${{ github.event.repository.name }} \
3838
coverity.connect.stream.name=${{ github.event.repository.name }}-${{ github.ref_name }} \
3939
coverity.connect.policy.view='Outstanding Issues'
40-
# coverity.local: true
4140
- name: Coverity PR Scan
4241
if: ${{ github.event_name == 'pull_request' }}
4342
run: |
@@ -47,7 +46,6 @@ jobs:
4746
coverity.connect.stream.name=${{ github.event.repository.name }}-${{ github.base_ref }} \
4847
coverity.automation.prcomment=true \
4948
github.repository.pull.number=${{ github.event.number }}
50-
# coverity.local: true
5149
# - name: Save Logs
5250
# if: always()
5351
# uses: actions/upload-artifact@v4

.github/workflows/coverity-sarif-report.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,3 @@ jobs:
4444
uses: github/codeql-action/upload-sarif@v3
4545
with:
4646
sarif_file: results.sarif
47-
# - name: Save Logs
48-
# if: always()
49-
# uses: actions/upload-artifact@v4
50-
# with:
51-
# name: bridge-logs
52-
# path: ${{ github.workspace }}/.bridge
53-
# include-hidden-files: true

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,3 @@ jobs:
3232
coverity_clean_command: mvn -B clean
3333
# coverity_local: true
3434
# include_diagnostics: true
35-
# - name: Save Logs
36-
# if: always()
37-
# uses: actions/upload-artifact@v4
38-
# with:
39-
# name: bridge-logs
40-
# path: ${{ github.workspace }}/.bridge
41-
# include-hidden-files: true

0 commit comments

Comments
 (0)