Skip to content

Commit 71e04e1

Browse files
dependabot[bot]tgross35
authored andcommitted
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fb8c00e commit 71e04e1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-24.04
2929
timeout-minutes: 10
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Setup Rust toolchain
3333
run: ./ci/install-rust.sh && rustup component add rustfmt
3434
- name: Check style
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ${{ matrix.os }}
4343
timeout-minutes: 10
4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
- run: rustup update stable --no-self-update
4747
- uses: Swatinem/rust-cache@v2
4848
# Here we use the latest stable Rust toolchain already installed by GitHub
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
TOOLCHAIN: ${{ matrix.toolchain }}
7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
- name: Setup Rust toolchain
7676
run: ./ci/install-rust.sh
7777

@@ -133,7 +133,7 @@ jobs:
133133
env:
134134
TARGET: ${{ matrix.target }}
135135
steps:
136-
- uses: actions/checkout@v5
136+
- uses: actions/checkout@v6
137137
- name: Setup Rust toolchain
138138
run: ./ci/install-rust.sh
139139
- uses: Swatinem/rust-cache@v2
@@ -229,7 +229,7 @@ jobs:
229229
env:
230230
TARGET: ${{ matrix.target }}
231231
steps:
232-
- uses: actions/checkout@v5
232+
- uses: actions/checkout@v6
233233
- name: Setup Rust toolchain
234234
run: ./ci/install-rust.sh
235235
- uses: Swatinem/rust-cache@v2
@@ -273,7 +273,7 @@ jobs:
273273
- target: x86_64-unknown-netbsd
274274
timeout-minutes: 25
275275
steps:
276-
- uses: actions/checkout@v5
276+
- uses: actions/checkout@v6
277277
- name: test on Solaris
278278
uses: vmactions/solaris-vm@v1.1.6
279279
if: contains(matrix.target, 'solaris')

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- name: Install Rust (rustup)

0 commit comments

Comments
 (0)