Skip to content

Commit 51c2525

Browse files
authored
Modify Polaris Action configuration and versions
Updated the Polaris GitHub Action configuration to use new versions and changed assessment types.
1 parent d73905c commit 51c2525

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

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

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,24 @@ on:
99
workflow_dispatch:
1010
jobs:
1111
polaris:
12-
runs-on: ubuntu-latest
12+
runs-on: linux64-vpn
1313
steps:
1414
- name: Checkout Source
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Setup Java JDK
17-
uses: actions/setup-java@v4
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: 21
2020
distribution: temurin
2121
cache: maven
2222
- name: Polaris Scan
2323
uses: blackduck-inc/black-duck-security-scan@v2
24+
env:
25+
BRIDGE_SIGNAL_LLM_URL: ${{ vars.LLM_URL }}
26+
BRIDGE_SIGNAL_LLM_KEY: ${{ secrets.LLM_KEY }}
2427
with:
2528
polaris_server_url: ${{ vars.POLARIS_SERVERURL }}
2629
polaris_access_token: ${{ secrets.POLARIS_ACCESSTOKEN }}
27-
polaris_assessment_types: SAST,SCA
30+
polaris_assessment_types: AI
2831
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
32-
coverity_build_command: mvn -B -DskipTests package
33-
coverity_clean_command: mvn -B clean
34-
github_token: ${{ secrets.GITHUB_TOKEN }}
35-
include_diagnostics: false
32+
include_diagnostics: true

0 commit comments

Comments
 (0)