We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$RUNNER_TEMP
1 parent 286fd68 commit c0a8eb9Copy full SHA for c0a8eb9
.github/actions/check-codescanning-config/action.yml
@@ -62,13 +62,11 @@ runs:
62
- name: Check config
63
working-directory: ${{ github.action_path }}
64
shell: bash
65
- run: ts-node ./index.ts "${{ runner.temp }}/user-config.yaml" '$EXPECTED_CONFIG_FILE_CONTENTS'
+ run: ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" '$EXPECTED_CONFIG_FILE_CONTENTS'
66
67
- name: Clean up
68
69
if: always()
70
run: |
71
- rm -rf ${{ runner.temp }}/codescanning-config-cli-test
72
- rm -rf ${{ runner.temp }}/user-config.yaml
73
rm -rf $RUNNER_TEMP/codescanning-config-cli-test
74
rm -rf $RUNNER_TEMP/user-config.yaml
0 commit comments