File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 19
19
# - cron: "* * * * *"s
20
20
21
21
jobs :
22
- check-binary :
22
+ check-for-vulnerabilities :
23
23
runs-on : ubuntu-latest
24
24
outputs :
25
25
report_contents : ${{ steps.save-output.outputs.report_contents }}
51
51
52
52
create-issue :
53
53
runs-on : ubuntu-latest
54
- needs : check-binary
55
- if : always() && needs.check-binary .outputs.report_contents != ''
54
+ needs : check-for-vulnerabilities
55
+ if : always() && needs.check-for-vulnerabilities .outputs.report_contents != ''
56
56
steps :
57
+ - uses : actions/checkout@v4
57
58
- name : Build new version and check
58
59
id : check-new-version
59
60
run : |
70
71
echo "fixed=$fixed" >> "$GITHUB_OUTPUT"
71
72
echo "Fixed=$fixed"
72
73
echo "${{ steps.check-new-version.outputs.latest_version }}"
73
- echo "${{ needs.check-binary- outputs.report_contents }}"
74
+ echo "${{ needs.check-for-vulnerabilities. outputs.report_contents }}"
74
75
75
76
# - name: Create Issue
76
77
# id: create-issue
81
82
# CVEs found in latest RIE release
82
83
# body: |
83
84
# ## CVEs found in latest RIE release:
84
- # > **${{ needs.check-binary .outputs.report_contents }}**
85
+ # > **${{ needs.check-for-vulnerabilities .outputs.report_contents }}**
85
86
86
- # #### Is this fixed by just updating to the latest Go version (${{steps.check-new-version.outputs.latest_version}})?):
87
+ # #### Is this fixed by just updating to the latest Go version (${{ steps.check-new-version.outputs.latest_version }})?):
87
88
# **${{ steps.check-new-version.outputs.fixed }}**
You can’t perform that action at this time.
0 commit comments