From aeebfe359b65ae2ca29c8cd1b5bc8f7e7a95d920 Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Tue, 16 Dec 2025 14:25:26 +0100 Subject: [PATCH] Replace deprecated test-results-action action with codecov-action --- .github/workflows/ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d8e2b92c39b..e088bfe04e9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1328,6 +1328,8 @@ jobs: - pytest-postgres - pytest-mariadb timeout-minutes: 10 + permissions: + id-token: write # codecov/test-results-action currently doesn't support tokenless uploads # therefore we can't run it on forks if: | @@ -1339,8 +1341,9 @@ jobs: with: pattern: test-results-* - name: Upload test results to Codecov - uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: + report_type: test_results fail_ci_if_error: true verbose: true - token: ${{ secrets.CODECOV_TOKEN }} + use_oidc: true