Skip to content

Update all non-major GitHub Actions dependencies to 3f131e8 #57

Update all non-major GitHub Actions dependencies to 3f131e8

Update all non-major GitHub Actions dependencies to 3f131e8 #57

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@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 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 }}