From f0fa3a667e226d70bcf06268930b58b0df6313ac Mon Sep 17 00:00:00 2001 From: Chris Frohoff Date: Sun, 20 Mar 2022 22:04:18 -0700 Subject: [PATCH] testing --- .github/workflows/test.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f24dfb..923a3cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,7 @@ jobs: # version: ${{ fromJson(needs.set-matrix.outputs.versions) }} # broken in act version: - 7u21-jdk -# - 7u25-jdk + - 7u25-jdk runs-on: ubuntu-latest container: image: vulhub/java:${{ matrix.version }} @@ -75,4 +75,16 @@ jobs: name: out-${{ matrix.version }} path: out.txt + analyze: + needs: run-java + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + path: artifacts + - run: cat artifacts/out* out.txt + - uses: actions/upload-artifact@v3 + with: + name: out + path: out.txt