From ca2961db4ec741648871dfd54e86546420ad65ae Mon Sep 17 00:00:00 2001 From: Serhii Temchenko Date: Sun, 10 Sep 2023 14:47:38 -0700 Subject: [PATCH] fix(ci): Used different method to install taplo since old fails with errors --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bef597fa..6e2655632 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,9 @@ jobs: default: true components: rustfmt, clippy - name: Install .toml files linter - run: cargo install taplo-cli + run: | + curl -fsSL https://github.com/tamasfe/taplo/releases/latest/download/taplo-linux-x86_64.gz \ + | gzip -d - | install -m 755 /dev/stdin /usr/local/bin/taplo - name: Checkout to the current branch uses: actions/checkout@v3 - name: Cache Rust Dependencies