From 5e2653c7d92076f608d62a737bea967cfd50ba5d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 13:46:42 -0700 Subject: [PATCH] chore(deps): update dependency actions/checkout to v4.1.1 (#776) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | minor | `v4` -> `v4.1.1` | --- ### Release Notes
actions/checkout (actions/checkout) ### [`v4.1.1`](https://togithub.com/actions/checkout/releases/tag/v4.1.1) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.0...v4.1.1) ##### What's Changed - Update CODEOWNERS to Launch team by [@​joshmgross](https://togithub.com/joshmgross) in [https://github.com/actions/checkout/pull/1510](https://togithub.com/actions/checkout/pull/1510) - Correct link to GitHub Docs by [@​peterbe](https://togithub.com/peterbe) in [https://github.com/actions/checkout/pull/1511](https://togithub.com/actions/checkout/pull/1511) - Link to release page from what's new section by [@​cory-miller](https://togithub.com/cory-miller) in [https://github.com/actions/checkout/pull/1514](https://togithub.com/actions/checkout/pull/1514) ##### New Contributors - [@​joshmgross](https://togithub.com/joshmgross) made their first contribution in [https://github.com/actions/checkout/pull/1510](https://togithub.com/actions/checkout/pull/1510) - [@​peterbe](https://togithub.com/peterbe) made their first contribution in [https://github.com/actions/checkout/pull/1511](https://togithub.com/actions/checkout/pull/1511) **Full Changelog**: https://github.com/actions/checkout/compare/v4.1.0...v4.1.1 ### [`v4.1.0`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v410) [Compare Source](https://togithub.com/actions/checkout/compare/v4.0.0...v4.1.0) - [Add support for partial checkout filters](https://togithub.com/actions/checkout/pull/1396)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/knope-dev/knope). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .../recipes/preview-releases-with-pull-requests.md | 10 +++++----- .../content/docs/recipes/workflow-dispatch-releases.md | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/src/content/docs/recipes/preview-releases-with-pull-requests.md b/docs/src/content/docs/recipes/preview-releases-with-pull-requests.md index adb45efa..50ac3d30 100644 --- a/docs/src/content/docs/recipes/preview-releases-with-pull-requests.md +++ b/docs/src/content/docs/recipes/preview-releases-with-pull-requests.md @@ -149,7 +149,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 with: fetch-depth: 0 token: ${{ secrets.PAT }} @@ -227,7 +227,7 @@ release: needs: [build-artifacts] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 - uses: actions/download-artifact@v4.1.0 with: path: artifacts @@ -279,7 +279,7 @@ jobs: name: ${{ matrix.target }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 - uses: Swatinem/rust-cache@v2 - name: Install host target run: rustup target add ${{ matrix.target }} @@ -317,7 +317,7 @@ jobs: needs: [build-artifacts] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 - uses: actions/download-artifact@v4.1.0 with: path: artifacts @@ -333,7 +333,7 @@ jobs: needs: [release] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 - uses: Swatinem/rust-cache@v2 - uses: katyo/publish-crates@v2 with: diff --git a/docs/src/content/docs/recipes/workflow-dispatch-releases.md b/docs/src/content/docs/recipes/workflow-dispatch-releases.md index c586a16f..61f62ae7 100644 --- a/docs/src/content/docs/recipes/workflow-dispatch-releases.md +++ b/docs/src/content/docs/recipes/workflow-dispatch-releases.md @@ -34,7 +34,7 @@ jobs: outputs: sha: ${{ steps.commit.outputs.sha }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 name: Fetch entire history (for conventional commits) with: fetch-depth: 0 @@ -73,7 +73,7 @@ jobs: name: ${{ matrix.target }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 with: ref: ${{ needs.prepare-release.outputs.sha }} @@ -114,7 +114,7 @@ jobs: needs: [build-artifacts, prepare-release] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4.1.1 with: ref: ${{ needs.prepare-release.outputs.sha }} - uses: actions/download-artifact@v4.1.0