From 218573cd14f9a47b079c9b89349f9b71cb5ee706 Mon Sep 17 00:00:00 2001 From: leaf corcoran Date: Wed, 18 Nov 2020 00:57:02 -0800 Subject: [PATCH] bump default luarocks, update readme for new versioning --- README.md | 6 +++--- action.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cd9f4f5..4f762f2 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Builds and installs LuaRocks from source into the `.luarocks/` directory in the Installs Lua, LuaRocks, then install a module: ```yaml -- uses: leafo/gh-actions-lua@v7 -- uses: leafo/gh-actions-luarocks@v3 +- uses: leafo/gh-actions-lua@v8.0.0 +- uses: leafo/gh-actions-luarocks@v4.0.0 # Install some package - name: install a module @@ -27,7 +27,7 @@ For a more complete example see: https://github.com/leafo/gh-actions-lua/blob/ma ### `luarocksVersion` -**Default**: `"3.2.0"` +**Default**: `"3.3.1"` Specifies which version of LuaRocks to install. Must be listed on https://luarocks.github.io/luarocks/releases/ diff --git a/action.yml b/action.yml index 33b2d45..9600590 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: luaRocksVersion: description: "The version of LuaRocks to install, must be available on https://luarocks.github.io/luarocks/releases/" required: false - default: "3.2.0" + default: "3.3.1" runs: using: 'node12'