From 91d78d91826e0ca86be8a0c2a1fe5f774476d371 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Mon, 20 Mar 2023 12:18:06 -0400 Subject: [PATCH] Use dtolnay/rust-toolchain@master instead of @stable This allows passing the `toolchain` input. --- Changes.md | 5 +++++ action.yml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changes.md b/Changes.md index ec300cc..906791d 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,8 @@ +## 0.0.5 - 2023-03-19 + +- Fix use of `dtolnay/rust-toolchain` action to allow passing a `toolchain` + input. + ## 0.0.4 - 2023-03-19 - Added a new `toolchain` parameter to allow selecting a Rust toolchain other diff --git a/action.yml b/action.yml index 2459171..e056124 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ runs: shell: bash run: set-cross-compile.sh ${{ inputs.target }} - name: Install toolchain if not cross-compiling - uses: dtolnay/rust-toolchain@stable + uses: dtolnay/rust-toolchain@master with: targets: ${{ inputs.target }} toolchain: ${{ inputs.toolchain }}