From 0b44564bb031a60a360ccc020676d74c784cca11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Oliveira?= Date: Tue, 21 Jan 2025 14:32:31 +0000 Subject: [PATCH] chore(ci): update tomlq and address the version lock introduced on #5817 Pull-Request: #5821. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b46a1878fc..b05a1be0182 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: - uses: taiki-e/cache-cargo-install-action@v2 with: - tool: tomlq@0.1.6 + tool: tomlq - name: Extract version from manifest run: | @@ -70,7 +70,7 @@ jobs: - name: Enforce version in `workspace.dependencies` matches the latest version if: env.CRATE != 'libp2p' run: | - SPECIFIED_VERSION=$(tq "workspace.dependencies.$CRATE.version" --file ./Cargo.toml) + SPECIFIED_VERSION=$(tq "workspace.dependencies.$CRATE.version" -r --file ./Cargo.toml) echo "Package version: $CRATE_VERSION"; echo "Specified version: $SPECIFIED_VERSION";