From f919cb12d9655c95389d08514e4b5ea58355aee1 Mon Sep 17 00:00:00 2001 From: jclausen Date: Fri, 29 Sep 2023 11:44:37 -0400 Subject: [PATCH] update scan job not to attempt to publish results --- .github/workflows/scans.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/scans.yml b/.github/workflows/scans.yml index 7345befdc..395acf682 100644 --- a/.github/workflows/scans.yml +++ b/.github/workflows/scans.yml @@ -53,12 +53,12 @@ jobs: uses: anchore/scan-action@v3 id: securityscan with: - path: "./runtime/build" + path: "./build" acs-report-enable: "true" - fail-build: false + fail-build: true - - name: Upload Anchore Report - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: ${{ steps.imagescan.outputs.sarif }} - category: "BoxLang-Runtime-${{ github.env.BRANCH }}" \ No newline at end of file + # - name: Upload Anchore Report + # uses: github/codeql-action/upload-sarif@v2 + # with: + # sarif_file: ${{ steps.imagescan.outputs.sarif }} + # category: "BoxLang-Runtime-${{ github.env.BRANCH }}" \ No newline at end of file