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 1ae5e54 commit 686740eCopy full SHA for 686740e
.github/actions/gh-cache/cache/action.yml
@@ -51,7 +51,7 @@ runs:
51
echo "value<<EOF" >> $GITHUB_OUTPUT
52
if [ -f "${{ inputs.key }}" ]; then
53
cat "${{ inputs.key }}" >> $GITHUB_OUTPUT
54
- echo "Outputted 'value: $(cat "${{ inputs.key }}")'"
+ echo "Outputted 'value=$(cat "${{ inputs.key }}")'"
55
else
56
echo "Skipped outputting 'value'"
57
fi
action.yml
@@ -22,6 +22,9 @@ runs:
22
with:
23
key: cached_findings-${{ github.ref_name }}
24
token: ${{ inputs.token }}
25
+ - name: Debugging
26
+ shell: bash
27
+ run: echo ${{ steps.restore.outputs.value }}
28
- name: Find
29
id: find
30
uses: github/continuous-accessibility-scanner/.github/actions/find@smockle/cache-findings
0 commit comments