@@ -11,11 +11,11 @@ jobs:
1111 name : Update dependencies
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v2
14+ - uses : actions/checkout@v3
1515
1616 - id : cargo-deps
1717 name : Cache cargo dependencies
18- uses : actions/cache@v2
18+ uses : actions/cache@v3
1919 with :
2020 path : |
2121 ~/.cargo/registry/index
3434 echo "::set-output name=head::$commit"
3535 - if : ${{ steps.cargo-deps.outputs.cache-hit != 'true' }}
3636 name : Cache cargo registry index
37- uses : actions/cache@v2
37+ uses : actions/cache@v3
3838 with :
3939 path : ~/.cargo/registry/index
4040 key : cargo-index-${{ steps.ls-crates-io-index.outputs.head }}
5757 NOTIFICATION_APP_CODE : ${{ secrets.NOTIFICATION_APP_CODE }}
5858 NOTIFICATION_ACCESS_TOKEN : ${{ secrets.NOTIFICATION_ACCESS_TOKEN }}
5959 steps :
60- - uses : actions/checkout@v2
60+ - uses : actions/checkout@v3
6161
6262 - name : Allow long paths on Windows
6363 if : ${{ runner.os == 'Windows' }}
7676 }
7777
7878 - name : Restore cargo dependencies
79- uses : actions/cache@v2
79+ uses : actions/cache@v3
8080 with :
8181 path : |
8282 ~/.cargo/registry/index
@@ -115,7 +115,7 @@ jobs:
115115 env :
116116 CARGO_INCREMENTAL : 0
117117 steps :
118- - uses : actions/checkout@v2
118+ - uses : actions/checkout@v3
119119 - uses : actions-rs/toolchain@v1
120120 with :
121121 profile : minimal
@@ -131,7 +131,7 @@ jobs:
131131 args : -- --check
132132
133133 - name : Restore cargo dependencies
134- uses : actions/cache@v2
134+ uses : actions/cache@v3
135135 with :
136136 path : |
137137 ~/.cargo/registry/index
@@ -156,7 +156,7 @@ jobs:
156156 NOTIFICATION_ACCESS_TOKEN : ${{ secrets.NOTIFICATION_ACCESS_TOKEN }}
157157
158158 steps :
159- - uses : actions/checkout@v2
159+ - uses : actions/checkout@v3
160160
161161 - name : Install Rust toolchain
162162 uses : actions-rs/toolchain@v1
@@ -166,13 +166,13 @@ jobs:
166166 override : true
167167
168168 - name : Restore cargo registry index
169- uses : actions/cache@v2
169+ uses : actions/cache@v3
170170 with :
171171 path : ~/.cargo/registry/index
172172 key : ' cargo-index-v2-${{ needs.update_deps.outputs.crates-io-index-head }}'
173173
174174 - name : Restore dependency crates
175- uses : actions/cache@v2
175+ uses : actions/cache@v3
176176 with :
177177 path : ~/.cargo/registry/cache
178178 key : ' cargo-deps-v2-${{ hashFiles('' Cargo.lock'' ) }}'
0 commit comments