22
22
runs-on : ${{ matrix.platform }}
23
23
steps :
24
24
- name : Checkout source code
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
- name : Install Rust ${{ matrix.toolchain }} toolchain
27
27
run : |
28
28
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
72
72
runs-on : ubuntu-latest
73
73
steps :
74
74
- name : Checkout source code
75
- uses : actions/checkout@v3
75
+ uses : actions/checkout@v4
76
76
with :
77
77
fetch-depth : 0
78
78
- name : Install Rust stable toolchain
@@ -94,14 +94,14 @@ jobs:
94
94
TOOLCHAIN : stable
95
95
steps :
96
96
- name : Checkout source code
97
- uses : actions/checkout@v3
97
+ uses : actions/checkout@v4
98
98
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
99
99
run : |
100
100
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
101
101
rustup override set ${{ env.TOOLCHAIN }}
102
102
- name : Cache routing graph snapshot
103
103
id : cache-graph
104
- uses : actions/cache@v3
104
+ uses : actions/cache@v4
105
105
with :
106
106
path : lightning/net_graph-2023-12-10.bin
107
107
key : ldk-net_graph-v0.0.118-2023-12-10.bin
@@ -118,7 +118,7 @@ jobs:
118
118
EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM : e94b38ef4b3ce683893bf6a3ee28d60cb37c73b059403ff77b7e7458157968c2
119
119
- name : Cache scorer snapshot
120
120
id : cache-scorer
121
- uses : actions/cache@v3
121
+ uses : actions/cache@v4
122
122
with :
123
123
path : lightning/scorer-2023-12-10.bin
124
124
key : ldk-scorer-v0.0.118-2023-12-10.bin
@@ -164,7 +164,7 @@ jobs:
164
164
TOOLCHAIN : stable
165
165
steps :
166
166
- name : Checkout source code
167
- uses : actions/checkout@v3
167
+ uses : actions/checkout@v4
168
168
with :
169
169
fetch-depth : 0
170
170
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
@@ -187,7 +187,7 @@ jobs:
187
187
TOOLCHAIN : stable
188
188
steps :
189
189
- name : Checkout source code
190
- uses : actions/checkout@v3
190
+ uses : actions/checkout@v4
191
191
with :
192
192
fetch-depth : 0
193
193
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
@@ -216,7 +216,7 @@ jobs:
216
216
TOOLCHAIN : 1.63
217
217
steps :
218
218
- name : Checkout source code
219
- uses : actions/checkout@v3
219
+ uses : actions/checkout@v4
220
220
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
221
221
run : |
222
222
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -239,7 +239,7 @@ jobs:
239
239
TOOLCHAIN : stable
240
240
steps :
241
241
- name : Checkout source code
242
- uses : actions/checkout@v3
242
+ uses : actions/checkout@v4
243
243
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
244
244
run : |
245
245
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -257,7 +257,7 @@ jobs:
257
257
TOOLCHAIN : 1.63.0
258
258
steps :
259
259
- name : Checkout source code
260
- uses : actions/checkout@v3
260
+ uses : actions/checkout@v4
261
261
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
262
262
run : |
263
263
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -272,7 +272,7 @@ jobs:
272
272
runs-on : ubuntu-latest
273
273
if : github.ref_name != 'main' # `main` has no diff with itself
274
274
steps :
275
- - uses : actions/checkout@v3
275
+ - uses : actions/checkout@v4
276
276
with :
277
277
fetch-depth : 0
278
278
- name : Relative diff
0 commit comments