Skip to content

Commit

Permalink
Updating Debricked action
Browse files Browse the repository at this point in the history
  • Loading branch information
kadraman committed May 17, 2024
1 parent bcf26b7 commit 1e74f27
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/debricked.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
runs-on: ubuntu-latest
if: ${{ (github.event_name == 'push') || (github.event_name == 'pull_request') || (github.event.inputs.runDebrickedScan == 'true') }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v4
# Java is required to run the various Fortify utilities.
# Setup JDK 11 on host
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
# Install appropriate version of Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: ${{ env.GRADLE_VERSION }}
# Install Fortify tools
# Install Fortify/Debricked tools
- name: Setup Fortify tools
uses: fortify/github-action/[email protected]
with:
Expand All @@ -55,6 +55,6 @@ jobs:
- name: Run debricked scan
shell: bash
run: |
debricked scan --callgraph -r "${DEFAULT_APP_NAME}" --access-token="${DEBRICKED_TOKEN}" -e "build.gradle" -e "*/**.lock" -e "**/build/classes/test/**" -e "**/target/classes/test-classes/**" .
debricked scan --callgraph -r "${DEFAULT_APP_NAME}" --access-token="${DEBRICKED_TOKEN}" -e "*/**.lock" -e "**/build/classes/test/**" -e "**/target/classes/test-classes/**" .
env:
DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }}

0 comments on commit 1e74f27

Please sign in to comment.