@@ -25,17 +25,17 @@ jobs:
25
25
sudo apt-get install libsdl2-image-dev
26
26
27
27
- name : Cache cargo registry
28
- uses : actions/cache@v1
28
+ uses : actions/cache@v4
29
29
with :
30
30
path : ~/.cargo/registry
31
31
key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
32
32
- name : Cache cargo index
33
- uses : actions/cache@v1
33
+ uses : actions/cache@v4
34
34
with :
35
35
path : ~/.cargo/git
36
36
key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
37
37
- name : Cache cargo build
38
- uses : actions/cache@v1
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : target
41
41
key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -71,17 +71,17 @@ jobs:
71
71
run : rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android
72
72
73
73
- name : Cache cargo registry
74
- uses : actions/cache@v1
74
+ uses : actions/cache@v4
75
75
with :
76
76
path : ~/.cargo/registry
77
77
key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
78
78
- name : Cache cargo index
79
- uses : actions/cache@v1
79
+ uses : actions/cache@v4
80
80
with :
81
81
path : ~/.cargo/git
82
82
key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
83
83
- name : Cache cargo build
84
- uses : actions/cache@v1
84
+ uses : actions/cache@v4
85
85
with :
86
86
path : target
87
87
key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -110,17 +110,17 @@ jobs:
110
110
- run : rustup target add x86_64-pc-windows-msvc
111
111
112
112
- name : Cache cargo registry
113
- uses : actions/cache@v1
113
+ uses : actions/cache@v4
114
114
with :
115
115
path : ~/.cargo/registry
116
116
key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
117
117
- name : Cache cargo index
118
- uses : actions/cache@v1
118
+ uses : actions/cache@v4
119
119
with :
120
120
path : ~/.cargo/git
121
121
key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
122
122
- name : Cache cargo build
123
- uses : actions/cache@v1
123
+ uses : actions/cache@v4
124
124
with :
125
125
path : target
126
126
key : ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
0 commit comments