From 35642ccbd0c4aebf64f82eba1df954734ec4f4ce Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Tue, 11 Jun 2024 18:06:33 +0200 Subject: [PATCH] chore: remove `busted_version` input --- action.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 969100e..9858bd1 100644 --- a/action.yml +++ b/action.yml @@ -9,7 +9,7 @@ inputs: nvim_version: description: | Version of Neovim to install. Valid values are 'stable', 'nightly' or version tag such - as 'v8.2.0126'. Note that this value must exactly match to a tag name when installing the + as 'v0.9.2'. Note that this value must exactly match to a tag name when installing the specific version. required: false default: 'stable' @@ -17,10 +17,6 @@ inputs: description: 'Version of LuaRocks to install.' required: false default: '3.11.1' - busted_version: - description: 'Version of busted to install.' - required: false - default: '2.2.0' runs: using: "composite" steps: @@ -54,7 +50,7 @@ runs: - name: Install busted and nlua if: steps.cache-luarocks.outputs.cache-hit != 'true' run: | - luarocks install busted --local ${{ inputs.bused_version }} + luarocks install busted --local luarocks install nlua --local shell: bash