Skip to content

Commit

Permalink
Merge pull request #77 from lycheeverse/chore/update-actions-2
Browse files Browse the repository at this point in the history
Update actions versions
  • Loading branch information
Jacob Lamb authored May 9, 2024
2 parents 714c88c + 64b58b3 commit 36d045c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Create Issue From File
if: github.repository_owner == 'lycheeverse' && env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/github_action_recipes/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
# Cache lychee results (e.g. to avoid hitting rate limits)
- name: Restore lychee cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/github_action_recipes/reuse-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ action to update the issue with the results of the lychee link checker.

```yaml
- name: Find Link Checker Issue
uses: micalevisk/last-issue-action@v1
uses: micalevisk/last-issue-action@v2
with:
state: open
labels: |
link-checker
- name: Update Issue
uses: peter-evans/create-issue-from-file@v4
uses: peter-evans/create-issue-from-file@v5
with:
title: Broken links detected in docs 🔗
# Update an existing issue if one was found (issue-number),
Expand Down

0 comments on commit 36d045c

Please sign in to comment.