Skip to content

Commit 01878ab

Browse files
committed
Merge branch 'main' into chralt98-increase-max-market-lifetime-2
2 parents c47ca4c + 13ef587 commit 01878ab

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/integration-tests.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cp target/release/wbuild/zeitgeist-runtime/zeitgeist_runtime.compact.compressed.wasm runtimes/;
3131
3232
- name: Upload runtimes
33-
uses: actions/upload-artifact@v3.1.2
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: runtimes
3636
path: runtimes
@@ -41,7 +41,7 @@ jobs:
4141
cp target/release/zeitgeist binaries/;
4242
4343
- name: Upload binary
44-
uses: actions/upload-artifact@v3.1.2
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: binaries
4747
path: binaries
@@ -80,13 +80,13 @@ jobs:
8080
mkdir -p integration-tests/tmp
8181
8282
- name: Download runtime
83-
uses: actions/download-artifact@v3.0.2
83+
uses: actions/download-artifact@v4
8484
with:
8585
name: runtimes
8686
path: target/release/wbuild/zeitgeist-runtime/
8787

8888
- name: Download binary
89-
uses: actions/download-artifact@v3.0.2
89+
uses: actions/download-artifact@v4
9090
with:
9191
name: binaries
9292
path: target/release
@@ -137,13 +137,13 @@ jobs:
137137
mkdir -p integration-tests/tmp
138138
139139
- name: Download runtime
140-
uses: actions/download-artifact@v3.0.2
140+
uses: actions/download-artifact@v4
141141
with:
142142
name: runtimes
143143
path: target/release/wbuild/zeitgeist-runtime/
144144

145145
- name: Download binary
146-
uses: actions/download-artifact@v3.0.2
146+
uses: actions/download-artifact@v4
147147
with:
148148
name: binaries
149149
path: target/release
@@ -193,7 +193,7 @@ jobs:
193193
mkdir -p integration-tests/tmp/node_logs
194194
195195
- name: Download runtime
196-
uses: actions/download-artifact@v3.0.2
196+
uses: actions/download-artifact@v4
197197
with:
198198
name: runtimes
199199
path: target/release/wbuild/battery-station-runtime/
@@ -248,7 +248,7 @@ jobs:
248248
mkdir -p integration-tests/tmp/node_logs
249249
250250
- name: "Download runtime"
251-
uses: actions/download-artifact@v3.0.2
251+
uses: actions/download-artifact@v4
252252
with:
253253
name: runtimes
254254
path: target/release/wbuild/zeitgeist-runtime/

scripts/tests/format.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ taplo_fmt() {
6666
has_taplo=$(which taplo)
6767
if [ $? -eq 1 ]; then
6868
echo "Installing taplo ..."
69-
cargo install taplo-cli --git https://github.com/tamasfe/taplo --rev 848722f2c604de68535e5a3e0bb2a2c1d3c7dc74
69+
cargo install taplo-cli --locked --git https://github.com/tamasfe/taplo --rev ab68333d17afab9319d0516b311a71bde828f900
7070
fi
7171
# install rustfmt if it isn't already
7272
has_rustfmt=$(which rustfmt)

0 commit comments

Comments
 (0)