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 }}
51
51
runs-on : ubuntu-latest
52
52
steps :
53
53
- name : Checkout source code
54
- uses : actions/checkout@v3
54
+ uses : actions/checkout@v4
55
55
with :
56
56
fetch-depth : 0
57
57
- name : Install Rust stable toolchain
@@ -73,14 +73,14 @@ jobs:
73
73
TOOLCHAIN : stable
74
74
steps :
75
75
- name : Checkout source code
76
- uses : actions/checkout@v3
76
+ uses : actions/checkout@v4
77
77
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
78
78
run : |
79
79
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
80
80
rustup override set ${{ env.TOOLCHAIN }}
81
81
- name : Cache routing graph snapshot
82
82
id : cache-graph
83
- uses : actions/cache@v3
83
+ uses : actions/cache@v4
84
84
with :
85
85
path : lightning/net_graph-2023-12-10.bin
86
86
key : ldk-net_graph-v0.0.118-2023-12-10.bin
97
97
EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM : e94b38ef4b3ce683893bf6a3ee28d60cb37c73b059403ff77b7e7458157968c2
98
98
- name : Cache scorer snapshot
99
99
id : cache-scorer
100
- uses : actions/cache@v3
100
+ uses : actions/cache@v4
101
101
with :
102
102
path : lightning/scorer-2023-12-10.bin
103
103
key : ldk-scorer-v0.0.118-2023-12-10.bin
@@ -143,7 +143,7 @@ jobs:
143
143
TOOLCHAIN : stable
144
144
steps :
145
145
- name : Checkout source code
146
- uses : actions/checkout@v3
146
+ uses : actions/checkout@v4
147
147
with :
148
148
fetch-depth : 0
149
149
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
@@ -166,7 +166,7 @@ jobs:
166
166
TOOLCHAIN : stable
167
167
steps :
168
168
- name : Checkout source code
169
- uses : actions/checkout@v3
169
+ uses : actions/checkout@v4
170
170
with :
171
171
fetch-depth : 0
172
172
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
@@ -195,7 +195,7 @@ jobs:
195
195
TOOLCHAIN : 1.63
196
196
steps :
197
197
- name : Checkout source code
198
- uses : actions/checkout@v3
198
+ uses : actions/checkout@v4
199
199
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
200
200
run : |
201
201
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -218,7 +218,7 @@ jobs:
218
218
TOOLCHAIN : stable
219
219
steps :
220
220
- name : Checkout source code
221
- uses : actions/checkout@v3
221
+ uses : actions/checkout@v4
222
222
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
223
223
run : |
224
224
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -236,7 +236,7 @@ jobs:
236
236
TOOLCHAIN : 1.63.0
237
237
steps :
238
238
- name : Checkout source code
239
- uses : actions/checkout@v3
239
+ uses : actions/checkout@v4
240
240
- name : Install Rust ${{ env.TOOLCHAIN }} toolchain
241
241
run : |
242
242
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ env.TOOLCHAIN }}
@@ -251,7 +251,7 @@ jobs:
251
251
runs-on : ubuntu-latest
252
252
if : github.ref_name != 'main' # `main` has no diff with itself
253
253
steps :
254
- - uses : actions/checkout@v3
254
+ - uses : actions/checkout@v4
255
255
with :
256
256
fetch-depth : 0
257
257
- name : Relative diff
0 commit comments