Skip to content

Commit d5f98d7

Browse files
authored
chore(deps): Update actions/checkout action to v6 (#35)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6`](https://redirect.github.com/actions/checkout/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/checkout/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 5am on the first day of the month" (UTC), 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. --- - [ ] <!-- 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/epage/_rust). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
2 parents b0881a6 + 1d7f429 commit d5f98d7

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
continue-on-error: true
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
- uses: actions-rs/audit-check@v1
3636
with:
3737
token: ${{ secrets.GITHUB_TOKEN }}
@@ -46,7 +46,7 @@ jobs:
4646
checks:
4747
- bans licenses sources
4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- uses: EmbarkStudios/cargo-deny-action@v2
5151
with:
5252
command: check ${{ matrix.checks }}

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
CARGO_PROFILE_DEV_DEBUG: line-tables-only
4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: Install Rust
4848
uses: dtolnay/rust-toolchain@stable
4949
with:
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ${{ matrix.os }}
6363
steps:
6464
- name: Checkout repository
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
- name: Install Rust
6767
uses: dtolnay/rust-toolchain@stable
6868
with:
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ${{ matrix.os }}
8080
steps:
8181
- name: Checkout repository
82-
uses: actions/checkout@v5
82+
uses: actions/checkout@v6
8383
- name: Install stable Rust
8484
uses: dtolnay/rust-toolchain@stable
8585
with:
@@ -96,7 +96,7 @@ jobs:
9696
runs-on: ubuntu-latest
9797
steps:
9898
- name: Checkout repository
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100
- name: Install Rust
101101
uses: dtolnay/rust-toolchain@stable
102102
with:
@@ -109,7 +109,7 @@ jobs:
109109
runs-on: ubuntu-latest
110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@v5
112+
uses: actions/checkout@v6
113113
- name: Install Rust
114114
uses: dtolnay/rust-toolchain@stable
115115
with:
@@ -124,7 +124,7 @@ jobs:
124124
runs-on: ubuntu-latest
125125
steps:
126126
- name: Checkout repository
127-
uses: actions/checkout@v5
127+
uses: actions/checkout@v6
128128
- name: Install Rust
129129
uses: dtolnay/rust-toolchain@stable
130130
with:
@@ -140,7 +140,7 @@ jobs:
140140
security-events: write # to upload sarif results
141141
steps:
142142
- name: Checkout repository
143-
uses: actions/checkout@v5
143+
uses: actions/checkout@v6
144144
- name: Install Rust
145145
uses: dtolnay/rust-toolchain@stable
146146
with:
@@ -170,7 +170,7 @@ jobs:
170170
runs-on: ubuntu-latest
171171
steps:
172172
- name: Checkout repository
173-
uses: actions/checkout@v5
173+
uses: actions/checkout@v6
174174
- name: Install Rust
175175
uses: dtolnay/rust-toolchain@stable
176176
with:

.github/workflows/committed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout Actions Repository
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
- name: Lint Commits

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
contents: read
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- uses: actions/setup-python@v6
2727
with:
2828
python-version: '3.x'

.github/workflows/rust-next.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
CARGO_PROFILE_DEV_DEBUG: line-tables-only
3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
- name: Install Rust
3838
uses: dtolnay/rust-toolchain@stable
3939
with:
@@ -54,7 +54,7 @@ jobs:
5454
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
5555
steps:
5656
- name: Checkout repository
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
- name: Install Rust
5959
uses: dtolnay/rust-toolchain@stable
6060
with:

.github/workflows/spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Actions Repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Spell Check Repo
2525
uses: crate-ci/typos@master

0 commit comments

Comments
 (0)