Skip to content

Commit

Permalink
ci: Mode CodeClimate ID from secrets to vars
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Mulugruntz committed Dec 4, 2023
1 parent 4342175 commit 9e3375b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Code Climate Coverage Action
uses: paambaati/[email protected]
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
Expand Down

0 comments on commit 9e3375b

Please sign in to comment.