From 7094e027c83f63cbcd7579f8e44f633417160bc6 Mon Sep 17 00:00:00 2001 From: Thomas Riccardi Date: Wed, 26 Oct 2022 00:26:08 +0200 Subject: [PATCH] fix publish test result warning since v2 of EnricoMi/publish-unit-test-result-action: warning: Option FILES is deprecated, please use JUNIT_FILES instead! all files are junit format, and are all named junit.xml --- .github/workflows/e2e-test-results.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test-results.yml b/.github/workflows/e2e-test-results.yml index 5286d80488..c38c0f6812 100644 --- a/.github/workflows/e2e-test-results.yml +++ b/.github/workflows/e2e-test-results.yml @@ -29,7 +29,7 @@ jobs: commit: ${{ github.event.workflow_run.head_sha }} event_file: artifacts/Event File/event.json event_name: ${{ github.event.workflow_run.event }} - files: "artifacts/**/*.xml" + junit_files: "artifacts/**/junit.xml" compare_to_earlier_commit: false test_changes_limit: 0 fail_on: "errors"