Skip to content

Commit

Permalink
Add java 8 setup to snyk github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Oct 5, 2023
1 parent 828d72c commit 086143c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/snyk-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Setup Java 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'

- uses: actions/checkout@v3
with:
path: mqtt-cli
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/snyk-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Setup Java 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'

- uses: actions/checkout@v3
with:
path: mqtt-cli
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/snyk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
environment: snyk-monitor-releases

steps:
- name: Setup Java 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'

- uses: actions/checkout@v3
with:
path: mqtt-cli
Expand Down

0 comments on commit 086143c

Please sign in to comment.