diff --git a/.github/workflows/application.yml b/.github/workflows/application.yml
index fa3f51a..bafd49e 100644
--- a/.github/workflows/application.yml
+++ b/.github/workflows/application.yml
@@ -33,7 +33,7 @@ jobs:
           name: test-results
           path: '**/build/reports/tests'
       - name: Publish Test Report
-        uses: mikepenz/action-junit-report@v4
+        uses: mikepenz/action-junit-report@v5
         if: always() # always run even if the previous step fails
         with:
           report_paths: '**/build/test-results/**/TEST-*.xml'
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
index 6691352..5ee1f46 100644
--- a/.github/workflows/dependabot.yml
+++ b/.github/workflows/dependabot.yml
@@ -22,7 +22,7 @@ jobs:
           name: test-results
           path: '**/build/reports/tests'
       - name: Publish Test Report
-        uses: mikepenz/action-junit-report@v4
+        uses: mikepenz/action-junit-report@v5
         if: failure() # always run even if the previous step fails
         with:
           report_paths: '**/build/test-results/**/TEST-*.xml'