File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -109,8 +109,8 @@ runs:
109109 uses : actions/github-script@v8
110110 with :
111111 script : |
112- const filings = JSON.parse(process.env.FILINGS || '[]') ;
113- const fixings = JSON.parse(process.env.FIXINGS || '[]') ;
112+ const filings = ${{ steps.file.outputs.filings || '""' }} || [] ;
113+ const fixings = ${{ steps.fix.outputs.fixings || '""' }} || [] ;
114114 const fixingsByIssueUrl = fixings.reduce((acc, fixing) => {
115115 if (fixing.issue && fixing.issue.url) {
116116 acc[fixing.issue.url] = fixing;
@@ -125,9 +125,6 @@ runs:
125125 }
126126 core.setOutput('results', JSON.stringify(results));
127127 core.debug(`Results: ${JSON.stringify(results)}`);
128- env :
129- FILINGS : ${{ steps.file.outputs.filings }}
130- FIXINGS : ${{ steps.fix.outputs.fixings }}
131128 - name : Save cached results
132129 uses : ./../../_actions/github/accessibility-scanner/current/.github/actions/gh-cache/cache
133130 with :
You can’t perform that action at this time.
0 commit comments