ci NVD working directory #462
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: Slipway Test | ||
on: [push] | ||
env: # runner has 7g of ram | ||
JVM_OPTS: -Xmx6G | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
project: [slipway-jetty9, slipway-jetty10, slipway-jetty11] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Java8 | ||
if: ${{ matrix.project == 'slipway-jetty9' }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '8' | ||
- name: Setup Java11 | ||
if: ${{ matrix.project != 'slipway-jetty9' }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
lein: 'latest' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Check | ||
working-directory: ./${{ matrix.project }} | ||
run: lein with-profile +smoke deps | ||
- name: Fmt | ||
working-directory: ./${{ matrix.project }} | ||
run: lein fmt | ||
- name: Kondo | ||
working-directory: ./${{ matrix.project }} | ||
run: lein kondo | ||
- name: Test | ||
working-directory: ./${{ matrix.project }} | ||
run: lein test | ||
- name: Uberjar | ||
working-directory: ./${{ matrix.project }} | ||
run: lein uberjar | ||
- name: NVD | ||
working-directory: ./${{ matrix.project }} | ||
uses: dependency-check/Dependency-Check_Action@main | ||
Check failure on line 65 in .github/workflows/ci.yml GitHub Actions / Slipway TestInvalid workflow file
|
||
env: | ||
# actions/setup-java changes JAVA_HOME so it needs to be reset to match the depcheck image | ||
JAVA_HOME: /opt/jdk | ||
with: | ||
project: ${{ matrix.project }} | ||
path: ./target | ||
format: 'HTML' | ||
out: ./reports | ||
args: > | ||
--suppression ./dependency-check-suppressions.xml | ||
- name: Persist NVD | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: nvd-${{ matrix.project }}-${{ github.sha }} | ||
path: ${{ matrix.project }}/reports/* | ||
retention-days: 1 |