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 742a364 commit cdf2993Copy full SHA for cdf2993
.github/workflows/mend.yml
@@ -69,7 +69,7 @@ jobs:
69
runs-on: ubuntu-22.04
70
#needs: check-if-allowed
71
outputs:
72
- mend-report-file: ${{ steps.report.mend-report-file }}
+ mend-report-file: ${{ steps.report.outputs.mend-report-file }}
73
steps:
74
- name: Checkout Repository
75
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -129,7 +129,7 @@ jobs:
129
- name: Print scan report
130
id: print
131
run: |
132
- cat ${{ steps.report.mend-report-file }} | jq .
+ echo "mend-report=$(cat ${{ steps.report.outputs.mend-report-file }} | jq .)" >> $GITHUB_OUTPUT
133
134
upload:
135
name: Archive mend scan report
0 commit comments