@@ -27,13 +27,13 @@ jobs:
2727 - name : " all features"
2828 features : " --all-features"
2929 steps :
30- - uses : actions/checkout@v6
30+ - uses : actions/checkout@v7
3131
3232 - name : Install Rust toolchain
3333 uses : dtolnay/rust-toolchain@stable
3434
3535 - name : Cache cargo registry and build
36- uses : actions/cache@v5
36+ uses : actions/cache@v6
3737 with :
3838 path : |
3939 ~/.cargo/registry
@@ -50,15 +50,15 @@ jobs:
5050 name : Clippy
5151 runs-on : ubuntu-latest
5252 steps :
53- - uses : actions/checkout@v6
53+ - uses : actions/checkout@v7
5454
5555 - name : Install Rust toolchain
5656 uses : dtolnay/rust-toolchain@stable
5757 with :
5858 components : clippy
5959
6060 - name : Cache cargo registry and build
61- uses : actions/cache@v5
61+ uses : actions/cache@v6
6262 with :
6363 path : |
6464 ~/.cargo/registry
7575 name : Format
7676 runs-on : ubuntu-latest
7777 steps :
78- - uses : actions/checkout@v6
78+ - uses : actions/checkout@v7
7979
8080 - name : Install Rust toolchain
8181 uses : dtolnay/rust-toolchain@stable
@@ -89,13 +89,13 @@ jobs:
8989 name : Documentation
9090 runs-on : ubuntu-latest
9191 steps :
92- - uses : actions/checkout@v6
92+ - uses : actions/checkout@v7
9393
9494 - name : Install Rust toolchain
9595 uses : dtolnay/rust-toolchain@stable
9696
9797 - name : Cache cargo registry and build
98- uses : actions/cache@v5
98+ uses : actions/cache@v6
9999 with :
100100 path : |
101101 ~/.cargo/registry
@@ -114,13 +114,13 @@ jobs:
114114 name : Minimum Supported Rust Version
115115 runs-on : ubuntu-latest
116116 steps :
117- - uses : actions/checkout@v6
117+ - uses : actions/checkout@v7
118118
119119 - name : Install Rust toolchain (MSRV)
120120 uses : dtolnay/rust-toolchain@1.85
121121
122122 - name : Cache cargo registry and build
123- uses : actions/cache@v5
123+ uses : actions/cache@v6
124124 with :
125125 path : |
126126 ~/.cargo/registry
@@ -137,7 +137,7 @@ jobs:
137137 name : Code Coverage
138138 runs-on : ubuntu-latest
139139 steps :
140- - uses : actions/checkout@v6
140+ - uses : actions/checkout@v7
141141
142142 - name : Install Rust toolchain
143143 uses : dtolnay/rust-toolchain@stable
@@ -148,7 +148,7 @@ jobs:
148148 uses : taiki-e/install-action@cargo-llvm-cov
149149
150150 - name : Cache cargo registry and build
151- uses : actions/cache@v5
151+ uses : actions/cache@v6
152152 with :
153153 path : |
154154 ~/.cargo/registry
@@ -162,7 +162,7 @@ jobs:
162162 run : cargo llvm-cov --all-features --lcov --output-path lcov.info
163163
164164 - name : Upload coverage to Codecov
165- uses : codecov/codecov-action@v6
165+ uses : codecov/codecov-action@v7
166166 with :
167167 files : lcov.info
168168 fail_ci_if_error : true
0 commit comments