Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

- name: Create issue
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v5
uses: peter-evans/create-issue-from-file@v6

Check warning on line 25 in .github/workflows/scheduled.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/scheduled.yml#L25

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
title: Broken link report
content-filepath: ./lychee/out.md
Expand Down Expand Up @@ -52,7 +52,7 @@
python ./check-supported-tools.py > ${{ env.OUTPUT_FILE }}

- name: Create issue
uses: peter-evans/create-issue-from-file@v5
uses: peter-evans/create-issue-from-file@v6
if: ${{ failure() }}
with:
title: Missing supported tools report
Expand Down Expand Up @@ -83,7 +83,7 @@
python ./check-security-tools.py > ${{ env.OUTPUT_FILE }}

- name: Create issue
uses: peter-evans/create-issue-from-file@v5
uses: peter-evans/create-issue-from-file@v6
if: ${{ failure() }}
with:
title: Missing security tools report
Expand Down