From 64b58b32b1638049c006b2ccdf467acf4639c825 Mon Sep 17 00:00:00 2001 From: Jacob Lamb Date: Thu, 9 May 2024 13:11:07 -0700 Subject: [PATCH] Update actions versions --- .github/workflows/links.yml | 2 +- src/content/docs/github_action_recipes/caching.md | 2 +- src/content/docs/github_action_recipes/reuse-issue.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index bf874cd..5070e95 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -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 diff --git a/src/content/docs/github_action_recipes/caching.md b/src/content/docs/github_action_recipes/caching.md index 0fc4b64..5437957 100644 --- a/src/content/docs/github_action_recipes/caching.md +++ b/src/content/docs/github_action_recipes/caching.md @@ -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 }} diff --git a/src/content/docs/github_action_recipes/reuse-issue.md b/src/content/docs/github_action_recipes/reuse-issue.md index 615753b..72ed8b3 100644 --- a/src/content/docs/github_action_recipes/reuse-issue.md +++ b/src/content/docs/github_action_recipes/reuse-issue.md @@ -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),