From 1bcec25ecca61129ab25662458b439999d01eb3e Mon Sep 17 00:00:00 2001 From: Marco Bungart Date: Tue, 19 May 2026 23:11:42 +0200 Subject: [PATCH] Action updates: - actions/download-artifact from v3 to v8 - actions/upload-artifact from v4 to v7 - actions/cache from v4 to v5 --- .github/actions/integration-test/action.yml | 12 ++++++------ .github/actions/owasp/action.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/actions/integration-test/action.yml b/.github/actions/integration-test/action.yml index e859c25..c6ffd2b 100644 --- a/.github/actions/integration-test/action.yml +++ b/.github/actions/integration-test/action.yml @@ -15,17 +15,17 @@ runs: cache: 'maven' - name: Download Maven State - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: maven-state - name: Download Compiled Classes - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: compiled-classes - name: Download JARs - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: jars @@ -86,7 +86,7 @@ runs: exit "${return_code}" - name: Upload Integration Test Report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ always() }} with: name: int-test-report @@ -95,7 +95,7 @@ runs: retention-days: 2 - name: Upload Integration Test App Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ always() }} with: name: int-test-app-logs @@ -105,7 +105,7 @@ runs: - name: Publish Report if: ${{ always() }} - uses: turing85/publish-report@v2 + uses: turing85/publish-report@v3 with: report-name: Integration Test report-path: '**/target/cucumber-reports/cucumber.xml' \ No newline at end of file diff --git a/.github/actions/owasp/action.yml b/.github/actions/owasp/action.yml index 5c0db9e..43b14a2 100644 --- a/.github/actions/owasp/action.yml +++ b/.github/actions/owasp/action.yml @@ -24,25 +24,25 @@ runs: cache: 'maven' - name: OWASP DB Cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: owasp-db key: owasp-db - name: Download Maven State - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 if: ${{ inputs.download-artifacts == 'true' }} with: name: maven-state - name: Download Compiled Classes - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 if: ${{ inputs.download-artifacts == 'true' }} with: name: compiled-classes - name: Download JARs - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 if: ${{ inputs.download-artifacts == 'true' }} with: name: jars @@ -59,7 +59,7 @@ runs: package - name: Upload OWASP Scan Report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ always() }} with: if-no-files-found: error @@ -69,7 +69,7 @@ runs: - name: Publish Report if: ${{ always() }} - uses: turing85/publish-report@v2 + uses: turing85/publish-report@v3 with: report-list-tests: failed report-name: OWASP Scan