Skip to content

Update all non-major GitHub Actions dependencies to ad2b381 #58

Update all non-major GitHub Actions dependencies to ad2b381

Update all non-major GitHub Actions dependencies to ad2b381 #58

Workflow file for this run

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: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
path: hivemq-mqtt-client
- name: Setup Java
uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 # v5
with:
distribution: temurin
java-version: |
8
11
21
- name: Check for new issues
uses: hivemq/hivemq-snyk-composite-action@1c18f39e10e7b1d35fa121b91b99c0445b7a4a56 # v2
with:
snyk-args: --org=hivemq-mqtt-client --project-name=hivemq-mqtt-client --configuration-matching=^runtimeClasspath$ -d hivemq-mqtt-client
snyk-token: ${{ secrets.SNYK_TOKEN }}