From 56ba8ddbb202ee3279ed8b833819186e8a1f5168 Mon Sep 17 00:00:00 2001 From: Murph Murphy Date: Tue, 31 Jan 2023 11:54:14 -0700 Subject: [PATCH] Try pip installing yq until https://github.com/mikefarah/yq/pull/1439 is done --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 305deaa3..a3ede508 100644 --- a/action.yml +++ b/action.yml @@ -29,6 +29,7 @@ runs: steps: - id: extract-toml-values run: | + pip3 install yq echo "toml-toolchain=$(tomlq .toolchain.channel rust-toolchain.toml)" >> $GITHUB_OUTPUT echo "toml-targets=$(tomlq -r '.toolchain.targets | @csv' rust-toolchain.toml)" >> $GITHUB_OUTPUT echo "toml-components=$(tomlq -r '.toolchain.components | @csv' rust-toolchain.toml)" >> $GITHUB_OUTPUT