-
Notifications
You must be signed in to change notification settings - Fork 46
build(deps): bump peter-evans/create-issue-from-file from 5.0.1 to 6.0.0 #2658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ jobs: | |
|
|
||
| - name: Create issue | ||
| if: env.lychee_exit_code != 0 | ||
| uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5 | ||
| uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0 | ||
| with: | ||
| title: Broken link report | ||
| content-filepath: ./lychee/out.md | ||
|
|
@@ -52,7 +52,7 @@ jobs: | |
| python ./check-supported-tools.py > ${{ env.OUTPUT_FILE }} | ||
|
|
||
| - name: Create issue | ||
| uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5 | ||
| uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 MEDIUM RISK Starting in v6.0.0, this action fails if the file at |
||
| if: ${{ failure() }} | ||
| with: | ||
| title: Missing supported tools report | ||
|
|
@@ -83,7 +83,7 @@ jobs: | |
| python ./check-security-tools.py > ${{ env.OUTPUT_FILE }} | ||
|
|
||
| - name: Create issue | ||
| uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5 | ||
| uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0 | ||
| if: ${{ failure() }} | ||
| with: | ||
| title: Missing security tools report | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 HIGH RISK
Upgrading to v6.0.0 requires the
issues: writepermission for theGITHUB_TOKEN. Furthermore, theifcondition on line 24 is broken asenv.lychee_exit_codeis undefined and the step will be skipped on job failure. Try running the following prompt in your coding agent: > Addpermissions: issues: writeto the workflow and update thecheck-broken-linksjob to usecontinue-on-error: truewith a correctedif: failure()condition for issue creation.