Skip to content

Commit 686740e

Browse files
committed
wip: Add debug logging
1 parent 1ae5e54 commit 686740e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/gh-cache/cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ runs:
5151
echo "value<<EOF" >> $GITHUB_OUTPUT
5252
if [ -f "${{ inputs.key }}" ]; then
5353
cat "${{ inputs.key }}" >> $GITHUB_OUTPUT
54-
echo "Outputted 'value: $(cat "${{ inputs.key }}")'"
54+
echo "Outputted 'value=$(cat "${{ inputs.key }}")'"
5555
else
5656
echo "Skipped outputting 'value'"
5757
fi

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ runs:
2222
with:
2323
key: cached_findings-${{ github.ref_name }}
2424
token: ${{ inputs.token }}
25+
- name: Debugging
26+
shell: bash
27+
run: echo ${{ steps.restore.outputs.value }}
2528
- name: Find
2629
id: find
2730
uses: github/continuous-accessibility-scanner/.github/actions/find@smockle/cache-findings

0 commit comments

Comments
 (0)