From 6180c3eff28201945666bf103817f7b3d2263ab0 Mon Sep 17 00:00:00 2001 From: Samuel GIFFARD Date: Mon, 4 Dec 2023 14:22:37 +0100 Subject: [PATCH] ci: Move CodeClimate ID from secrets to vars (#267) According to their documentation, this is not considered a sensitive value. https://docs.codeclimate.com/docs/finding-your-test-coverage-token#regenerating-a-repos-test-reporter-id --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af4c48a..082b6bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -138,7 +138,7 @@ jobs: - name: Code Climate Coverage Action uses: paambaati/codeclimate-action@v3.2.0 env: - CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} + CC_TEST_REPORTER_ID: ${{ vars.CC_TEST_REPORTER_ID }} with: coverageCommand: coverage xml debug: true