File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3939
4040 - uses : codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
4141 env :
42- CODECOV_TOKEN : ${{secrets.CODECOV_TOKEN}}
42+ CODECOV_TOKEN : ${{secrets.CODECOV_TOKEN}} # zizmor: ignore[secrets-outside-env]
4343 with :
4444 files : ./coverage.xml
4545 fail_ci_if_error : true # optional (default = false)
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ jobs:
4141 if : startsWith(github.repository, 'cpp-linter') && !startsWith(github.ref, 'refs/tags/')
4242 env :
4343 TWINE_USERNAME : __token__
44- TWINE_PASSWORD : ${{ secrets.TEST_PYPI_TOKEN }}
44+ TWINE_PASSWORD : ${{ secrets.TEST_PYPI_TOKEN }} # zizmor: ignore[secrets-outside-env]
4545 run : twine upload --repository testpypi dist/*
4646
4747 - name : Publish package (to PyPI)
4848 if : startsWith(github.repository, 'cpp-linter') && startsWith(github.ref, 'refs/tags/')
4949 env :
5050 TWINE_USERNAME : __token__
51- TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
51+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }} # zizmor: ignore[secrets-outside-env]
5252 run : twine upload dist/*
Original file line number Diff line number Diff line change 1717 # In order to use the Snyk Action you will need to have a Snyk API token.
1818 # More details in https://github.com/snyk/actions#getting-your-snyk-token
1919 # or you can sign up for free at https://snyk.io/login
20- SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }}
20+ SNYK_TOKEN : ${{ secrets.SNYK_TOKEN }} # zizmor: ignore[secrets-outside-env]
2121 with :
2222 image : xianpengshen/clang-tools:all
2323 args : --severity-threshold=high --file=Dockerfile.all
You can’t perform that action at this time.
0 commit comments