File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1818 ]
1919
2020 steps :
21- - uses : actions/checkout@v2
21+ - uses : actions/checkout@v4
2222
2323 - uses : actions-rs/toolchain@v1
2424 with :
2828 components : clippy
2929
3030 - name : Cache .cargo and target
31- uses : actions/cache@v2
31+ uses : actions/cache@v4
3232 with :
3333 path : |
3434 ~/.cargo
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout
22- uses : actions/checkout@v2
22+ uses : actions/checkout@v4
2323
2424 - uses : actions-rs/toolchain@v1
2525 with :
2929 components : rustfmt
3030
3131 - name : Cache .cargo and target
32- uses : actions/cache@v2
32+ uses : actions/cache@v4
3333 with :
3434 path : |
3535 ~/.cargo
Original file line number Diff line number Diff line change 3838 runs-on : ubuntu-latest
3939 steps :
4040 - name : Checkout code
41- uses : actions/checkout@v2
41+ uses : actions/checkout@v4
4242
4343 - name : Setup Rust
4444 uses : actions-rs/toolchain@v1
4949
5050 - name : Install `cargo-edit`
5151 run : cargo install cargo-edit
52-
52+
5353 - id : cargo-set-version
5454 name : Set Version
5555 run : cargo set-version --bump ${{ inputs.version }}
Original file line number Diff line number Diff line change 1919
2020 steps :
2121 - name : Checkout
22- uses : actions/checkout@v2
22+ uses : actions/checkout@v4
2323
2424 - uses : actions-rs/toolchain@v1
2525 with :
2828 override : true
2929
3030 - name : Cache .cargo and target
31- uses : actions/cache@v2
31+ uses : actions/cache@v4
3232 with :
3333 path : |
3434 ~/.cargo
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ impl<'a> HexSlice<'a> {
1111 }
1212}
1313
14- impl < ' a > Display for HexSlice < ' a > {
14+ impl Display for HexSlice < ' _ > {
1515 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
1616 for ( index, byte) in self . 0 . iter ( ) . enumerate ( ) {
1717 if index > 0 {
You can’t perform that action at this time.
0 commit comments