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.
1 parent e0e655c commit 07b49dbCopy full SHA for 07b49db
.github/actions/gh-cache/cache/action.yml
@@ -32,7 +32,9 @@ runs:
32
- if: ${{ inputs.value }}
33
name: Update cached value
34
shell: bash
35
- run: echo "${{ inputs.value }}" > ${{ inputs.key }}
+ run: |
36
+ mkdir -p "$(dirname "${{ inputs.key }}")"
37
+ printf "%s" "${{ inputs.value }}" > "${{ inputs.key }}"
38
- name: Save cached value
39
uses: github/continuous-accessibility-scanner/.github/actions/gh-cache/save@smockle/cache-findings
40
with:
0 commit comments