Skip to content

Commit ea7d483

Browse files
dependabot[bot]rjzak
authored andcommitted
build(deps): bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 709fb5a commit ea7d483

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: cargo fmt
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
8+
- uses: actions/checkout@v4
99
- name: Setup Rust toolchain
1010
run: rustup show && rustup update
1111
- name: cargo fmt
@@ -15,7 +15,7 @@ jobs:
1515
name: cargo clippy
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- name: Setup Rust toolchain
2020
run: rustup show && rustup update
2121
- name: cargo clippy
@@ -25,7 +25,7 @@ jobs:
2525
name: cargo readme
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2929
- uses: dtolnay/rust-toolchain@stable
3030
- run: cargo +stable install cargo-readme
3131
- run: cd ciborium-io && cargo readme > README.md

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: test ${{ matrix.toolchain }} ${{ matrix.profile.name }} ${{ matrix.crates.name }} ${{ matrix.crates.feat }}
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
8+
- uses: actions/checkout@v4
99
- name: Install Rust
1010
run: rustup toolchain install ${{ matrix.toolchain }}
1111
- name: cargo test

0 commit comments

Comments
 (0)