From b5a381027f395ece5cb1ec2616b76ddc191149b4 Mon Sep 17 00:00:00 2001 From: Jack Green Date: Mon, 26 Jan 2026 18:25:13 +0000 Subject: [PATCH] Replace explicit `codecov` token with tokenless-OIDC authentication See https://github.com/hazelcast/hazelcast-csharp-client/pull/1031 --- .github/workflows/coverage_runner.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage_runner.yml b/.github/workflows/coverage_runner.yml index 2d1cc8b255..642fc90761 100644 --- a/.github/workflows/coverage_runner.yml +++ b/.github/workflows/coverage_runner.yml @@ -160,7 +160,7 @@ jobs: if: ${{ matrix.python-version == needs.python-versions.outputs.latest-python-version && matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request_target' }} uses: codecov/codecov-action@v5 with: - token: ${{ secrets.CODECOV_TOKEN }} + use_oidc: true files: ./coverage.xml override_pr: ${{ github.event.pull_request.number }} fail_ci_if_error: true @@ -169,7 +169,7 @@ jobs: if: ${{ matrix.python-version == needs.python-versions.outputs.latest-python-version && matrix.os == 'ubuntu-latest' && github.event_name == 'push' }} uses: codecov/codecov-action@v5 with: - token: ${{ secrets.CODECOV_TOKEN }} + use_oidc: true files: ./coverage.xml fail_ci_if_error: true @@ -177,7 +177,7 @@ jobs: if: ${{ matrix.python-version == needs.python-versions.outputs.latest-python-version && matrix.os == 'ubuntu-latest' && github.event_name == 'workflow_dispatch' }} uses: codecov/codecov-action@v5 with: - token: ${{ secrets.CODECOV_TOKEN }} + use_oidc: true files: ./coverage.xml override_pr: ${{ github.event.inputs.pr_number }} fail_ci_if_error: true