Skip to content

Commit

Permalink
Update system tests actions order.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chavjoh committed Jan 20, 2024
1 parent ced0a57 commit ce13906
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/system-tests.yml
Expand Up @@ -7,15 +7,6 @@ jobs:
- name: Check out
uses: actions/checkout@master

- name: Set up
uses: actions/setup-java@master
with:
java-version: '21'
distribution: 'temurin'

- name: Build project
run: mvn -B -Pcoverage verify

- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/maven@master
continue-on-error: true
Expand All @@ -27,4 +18,13 @@ jobs:
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: snyk.sarif
sarif_file: snyk.sarif

- name: Set up
uses: actions/setup-java@master
with:
java-version: '21'
distribution: 'temurin'

- name: Build project
run: mvn -B -Pcoverage verify

0 comments on commit ce13906

Please sign in to comment.