Update mikepenz/action-junit-report digest to a427a90 (master) #418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Snyk scan on PRs | |
on: | |
pull_request: | |
branches: | |
- master** | |
jobs: | |
monitor-baseline-project: | |
uses: ./.github/workflows/snyk-push.yml | |
with: | |
github_ref: ${{ github.base_ref }} | |
secrets: inherit | |
scan-for-new-issues: | |
runs-on: ubuntu-latest | |
needs: monitor-baseline-project | |
steps: | |
- name: Setup Java | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
8 | |
11 | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
path: mqtt-cli | |
- name: Check for new issues | |
uses: hivemq/hivemq-snyk-composite-action@ed15058181891d29fd10f0226f579c16188c0b20 # v2.2.1 | |
with: | |
snyk-args: --org=hivemq-mqtt-cli --configuration-matching=^runtimeClasspath$ mqtt-cli -d | |
snyk-token: ${{ secrets.SNYK_TOKEN }} |