diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index cae288e91..d62a7d205 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -70,7 +70,7 @@ jobs: working-directory: etp-core/etp-backend run: clojure -M:dev:test-ci - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() with: report_paths: '**/etp-core/etp-backend/target/test.xml' diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index f331fa973..90615be51 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -53,7 +53,7 @@ jobs: - run: npm ci - run: npm test - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() with: report_paths: '**/etp-front/test_report.xml' diff --git a/.github/workflows/ci-public.yml b/.github/workflows/ci-public.yml index 8ab791d3a..00590ef03 100644 --- a/.github/workflows/ci-public.yml +++ b/.github/workflows/ci-public.yml @@ -53,7 +53,7 @@ jobs: - run: npm ci - run: npm test - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() with: report_paths: '**/etp-public/test_report.xml' diff --git a/.github/workflows/nvd-clojure.yml b/.github/workflows/nvd-clojure.yml index 838efc9d8..9fe2d433e 100644 --- a/.github/workflows/nvd-clojure.yml +++ b/.github/workflows/nvd-clojure.yml @@ -20,7 +20,7 @@ jobs: NVD_API_TOKEN: ${{ secrets.NVD_API_TOKEN }} run: ./nvd.sh - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 + uses: mikepenz/action-junit-report@v5 if: success() || failure() with: report_paths: '**/etp-core/etp-backend/target/nvd/dependency-check-junit.xml'