1111 runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout sources
14- uses : actions/checkout@v1
14+ uses : actions/checkout@v3
1515 - name : Install stable toolchain
1616 uses : actions-rs/toolchain@v1
1717 with :
@@ -20,17 +20,17 @@ jobs:
2020 - name : Rust Version
2121 run : rustc --version
2222 - name : Cache cargo registry
23- uses : actions/cache@v1
23+ uses : actions/cache@v2
2424 with :
2525 path : ~/.cargo/registry
2626 key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
2727 - name : Cache cargo index
28- uses : actions/cache@v1
28+ uses : actions/cache@v2
2929 with :
3030 path : ~/.cargo/git
3131 key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
3232 - name : Cache cargo build
33- uses : actions/cache@v1
33+ uses : actions/cache@v2
3434 with :
3535 path : target
3636 key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
4343 runs-on : ubuntu-latest
4444 steps :
4545 - name : Checkout sources
46- uses : actions/checkout@v1
46+ uses : actions/checkout@v3
4747 - name : Install stable toolchain
4848 uses : actions-rs/toolchain@v1
4949 with :
@@ -52,17 +52,17 @@ jobs:
5252 - name : Rust Version
5353 run : rustc --version
5454 - name : Cache cargo registry
55- uses : actions/cache@v1
55+ uses : actions/cache@v2
5656 with :
5757 path : ~/.cargo/registry
5858 key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
5959 - name : Cache cargo index
60- uses : actions/cache@v1
60+ uses : actions/cache@v2
6161 with :
6262 path : ~/.cargo/git
6363 key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
6464 - name : Cache cargo build
65- uses : actions/cache@v1
65+ uses : actions/cache@v2
6666 with :
6767 path : target
6868 key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
7373 runs-on : ubuntu-latest
7474 steps :
7575 - name : Checkout sources
76- uses : actions/checkout@v1
76+ uses : actions/checkout@v3
7777 - name : Install stable toolchain
7878 uses : actions-rs/toolchain@v1
7979 with :
@@ -84,17 +84,17 @@ jobs:
8484 - name : Install rustfmt
8585 run : rustup component add rustfmt
8686 - name : Cache cargo registry
87- uses : actions/cache@v1
87+ uses : actions/cache@v2
8888 with :
8989 path : ~/.cargo/registry
9090 key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
9191 - name : Cache cargo index
92- uses : actions/cache@v1
92+ uses : actions/cache@v2
9393 with :
9494 path : ~/.cargo/git
9595 key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
9696 - name : Cache cargo build
97- uses : actions/cache@v1
97+ uses : actions/cache@v2
9898 with :
9999 path : target
100100 key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
@@ -108,7 +108,7 @@ jobs:
108108 runs-on : ubuntu-latest
109109 steps :
110110 - name : Checkout sources
111- uses : actions/checkout@v1
111+ uses : actions/checkout@v3
112112 - name : Install stable toolchain
113113 uses : actions-rs/toolchain@v1
114114 with :
@@ -122,17 +122,17 @@ jobs:
122122 # command: clippy
123123 # args: -- -D warningsadd clippy
124124 - name : Cache cargo registry
125- uses : actions/cache@v1
125+ uses : actions/cache@v2
126126 with :
127127 path : ~/.cargo/registry
128128 key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
129129 - name : Cache cargo index
130- uses : actions/cache@v1
130+ uses : actions/cache@v2
131131 with :
132132 path : ~/.cargo/git
133133 key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
134134 - name : Cache cargo build
135- uses : actions/cache@v1
135+ uses : actions/cache@v2
136136 with :
137137 path : target
138138 key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
0 commit comments