From b7a9079e6a8cca724ea9a87f0f9a0f77220ccec9 Mon Sep 17 00:00:00 2001 From: tobyash86 <34890669+tobyash86@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:27:21 +0200 Subject: [PATCH 1/4] Update upload-artifact action version to v7 --- .github/workflows/dottest_sa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dottest_sa.yml b/.github/workflows/dottest_sa.yml index bd4582dd..c63deed4 100644 --- a/.github/workflows/dottest_sa.yml +++ b/.github/workflows/dottest_sa.yml @@ -45,7 +45,7 @@ jobs: # --------------------------------------------------------------- # Archive the findings reports as job artifact - name: Upload static analysis artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v7 with: name: Report files path: ${{ steps.dottest_sa.outputs.reportDir }}/*.* From 3ec963beee9bba04d8595dfc1cbbbb536d484b0b Mon Sep 17 00:00:00 2001 From: tobyash86 <34890669+tobyash86@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:34:28 +0200 Subject: [PATCH 2/4] Update dotTEST installation directory in workflow --- .github/workflows/dottest_sa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dottest_sa.yml b/.github/workflows/dottest_sa.yml index c63deed4..5a58a4bc 100644 --- a/.github/workflows/dottest_sa.yml +++ b/.github/workflows/dottest_sa.yml @@ -32,7 +32,7 @@ jobs: uses: parasoft/run-dottest-analyzer@2.0.0 with: # Path to working directory. - installDir: c:\Program Files\Parasoft\dotTEST\2022.2 + installDir: c:\Program Files\Parasoft\dotTEST\2026.1 testConfig: Flow Analysis # --------------------------------------------------------------- From 1d7da6522427c1e58f9cdc30924295fe2ed7b896 Mon Sep 17 00:00:00 2001 From: tobyash86 <34890669+tobyash86@users.noreply.github.com> Date: Wed, 6 May 2026 00:58:51 +0200 Subject: [PATCH 3/4] Add solution path to dotTEST workflow --- .github/workflows/dottest_sa.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dottest_sa.yml b/.github/workflows/dottest_sa.yml index 5a58a4bc..7cf41f2e 100644 --- a/.github/workflows/dottest_sa.yml +++ b/.github/workflows/dottest_sa.yml @@ -34,6 +34,7 @@ jobs: # Path to working directory. installDir: c:\Program Files\Parasoft\dotTEST\2026.1 testConfig: Flow Analysis + solution: \*.slnx # --------------------------------------------------------------- # Upload the findings into the GitHub code scanning alert section From 4598e3f0c09bebcdebfe09e7b9137b4494076a48 Mon Sep 17 00:00:00 2001 From: tobyash86 <34890669+tobyash86@users.noreply.github.com> Date: Wed, 6 May 2026 01:14:11 +0200 Subject: [PATCH 4/4] Fix solution path in dottest_sa.yml --- .github/workflows/dottest_sa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dottest_sa.yml b/.github/workflows/dottest_sa.yml index 7cf41f2e..90d97379 100644 --- a/.github/workflows/dottest_sa.yml +++ b/.github/workflows/dottest_sa.yml @@ -34,7 +34,7 @@ jobs: # Path to working directory. installDir: c:\Program Files\Parasoft\dotTEST\2026.1 testConfig: Flow Analysis - solution: \*.slnx + solution: .\*.slnx # --------------------------------------------------------------- # Upload the findings into the GitHub code scanning alert section