From b6cfb8224728f4180a5ba99035f49c2a17543f82 Mon Sep 17 00:00:00 2001 From: ehennestad Date: Fri, 25 Oct 2024 10:30:19 +0200 Subject: [PATCH] Add upload of code issues report in "update" workflow --- .github/workflows/update.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 6c4994b4..e42debcd 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -36,7 +36,14 @@ jobs: uses: matlab-actions/run-command@v2 if: always() with: - command: addpath(genpath("dev")),codecheckToolbox() + command: addpath(genpath("dev")),codecheckToolbox() + + # Upload code issues report + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + # Path to SARIF file relative to the root of the repository + sarif_file: docs/reports/code_issues.sarif # Runs all tests in the project. - name: Run tests