Skip to content

Commit ef9a8c9

Browse files
chore(deps): update dependency actions/checkout to v4.2.0 (#1205)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | | minor | `v4.1.7` -> `v4.2.0` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | minor | `v4.1.7` -> `v4.2.0` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.2.0`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v420) [Compare Source](https://redirect.github.com/actions/checkout/compare/v4.1.7...v4.2.0) - Add Ref and Commit outputs by [@&#8203;lucacome](https://redirect.github.com/lucacome) in [https://github.com/actions/checkout/pull/1180](https://redirect.github.com/actions/checkout/pull/1180) - Dependency updates by [@&#8203;dependabot-](https://redirect.github.com/dependabot-) [https://github.com/actions/checkout/pull/1777](https://redirect.github.com/actions/checkout/pull/1777), [https://github.com/actions/checkout/pull/1872](https://redirect.github.com/actions/checkout/pull/1872) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/knope-dev/knope). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 89b2ba5 commit ef9a8c9

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/add_release_assets.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: (github.head_ref == 'knope/release' && github.event.pull_request.merged == true) || github.event_name == 'workflow_dispatch'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4.1.7
14+
- uses: actions/checkout@v4.2.0
1515
- run: echo "tag_name=$(gh release list --json 'isDraft,tagName' --jq '.[] | select(.isDraft) | .tagName')" >> $GITHUB_OUTPUT
1616
env:
1717
GH_TOKEN: ${{ github.token }}
@@ -38,7 +38,7 @@ jobs:
3838
name: ${{ matrix.target }}
3939

4040
steps:
41-
- uses: actions/checkout@v4.1.7
41+
- uses: actions/checkout@v4.2.0
4242
- uses: Swatinem/rust-cache@v2
4343
- name: Install host target
4444
run: rustup target add ${{ matrix.target }}
@@ -83,7 +83,7 @@ jobs:
8383
needs: [build-artifacts, get-tag]
8484
runs-on: ubuntu-latest
8585
steps:
86-
- uses: actions/checkout@v4.1.7
86+
- uses: actions/checkout@v4.2.0
8787
- uses: actions/[email protected]
8888
with:
8989
path: artifacts

.github/workflows/publish_crates.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: (github.head_ref == 'knope/release' && github.event.pull_request.merged == true) || github.event_name == 'workflow_dispatch'
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4.1.7
14+
- uses: actions/checkout@v4.2.0
1515
- uses: Swatinem/rust-cache@v2
1616
- name: Install cargo-release
1717
run: cargo install cargo-release

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
os: [ubuntu-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v4.1.7
19+
- uses: actions/checkout@v4.2.0
2020
- uses: Swatinem/rust-cache@v2
2121
- uses: actions/setup-node@v4
2222
if: matrix.os == 'ubuntu-latest'

docs/src/content/docs/recipes/1-preview-releases-with-pull-requests.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases
139139
runs-on: ubuntu-latest
140140
steps:
141-
- uses: actions/checkout@v4.1.7
141+
- uses: actions/checkout@v4.2.0
142142
with:
143143
fetch-depth: 0
144144
token: ${{ secrets.PAT }}
@@ -215,7 +215,7 @@ release:
215215
needs: [build-artifacts]
216216
runs-on: ubuntu-latest
217217
steps:
218-
- uses: actions/checkout@v4.1.7
218+
- uses: actions/checkout@v4.2.0
219219
- uses: actions/[email protected]
220220
with:
221221
path: artifacts
@@ -267,7 +267,7 @@ jobs:
267267
name: ${{ matrix.target }}
268268
269269
steps:
270-
- uses: actions/checkout@v4.1.7
270+
- uses: actions/checkout@v4.2.0
271271
- uses: Swatinem/[email protected]
272272
- name: Install host target
273273
run: rustup target add ${{ matrix.target }}
@@ -305,7 +305,7 @@ jobs:
305305
needs: [build-artifacts]
306306
runs-on: ubuntu-latest
307307
steps:
308-
- uses: actions/checkout@v4.1.7
308+
- uses: actions/checkout@v4.2.0
309309
- uses: actions/[email protected]
310310
with:
311311
path: artifacts
@@ -321,7 +321,7 @@ jobs:
321321
needs: [release]
322322
runs-on: ubuntu-latest
323323
steps:
324-
- uses: actions/checkout@v4.1.7
324+
- uses: actions/checkout@v4.2.0
325325
- uses: Swatinem/[email protected]
326326
- uses: katyo/publish-crates@v2
327327
with:

docs/src/content/docs/recipes/workflow-dispatch-releases.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
outputs:
3535
sha: ${{ steps.commit.outputs.sha }}
3636
steps:
37-
- uses: actions/checkout@v4.1.7
37+
- uses: actions/checkout@v4.2.0
3838
name: Fetch entire history (for conventional commits)
3939
with:
4040
fetch-depth: 0
@@ -74,7 +74,7 @@ jobs:
7474
name: ${{ matrix.target }}
7575

7676
steps:
77-
- uses: actions/checkout@v4.1.7
77+
- uses: actions/checkout@v4.2.0
7878
with:
7979
ref: ${{ needs.prepare-release.outputs.sha }}
8080

@@ -115,7 +115,7 @@ jobs:
115115
needs: [build-artifacts, prepare-release]
116116
runs-on: ubuntu-latest
117117
steps:
118-
- uses: actions/checkout@v4.1.7
118+
- uses: actions/checkout@v4.2.0
119119
with:
120120
ref: ${{ needs.prepare-release.outputs.sha }}
121121
- uses: actions/[email protected]

0 commit comments

Comments
 (0)