diff --git a/README.md b/README.md index e41aada..e153fc3 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Github Action for Lua and LuaJIT -### `leafo/gh-actions-lua` +### `luarocks/gh-actions-lua` -[![Actions Status](https://github.com/leafo/gh-actions-lua/workflows/test/badge.svg)](https://github.com/leafo/gh-actions-lua/actions) +[![Actions Status](https://github.com/luarocks/gh-actions-lua/workflows/test/badge.svg)](https://github.com/luarocks/gh-actions-lua/actions) **Note**: You must use version 8 or greater as GitHub has deprecated older versions of the actions core libraries. @@ -13,7 +13,7 @@ directly in workflows. Other Lua GitHub actions: -* [`leafo/gh-actions-luarocks`](https://github.com/leafo/gh-actions-luarocks) +* [`luarocks/gh-actions-luarocks`](https://github.com/luarocks/gh-actions-luarocks) * inputs: `luarocksVersion` @@ -22,13 +22,13 @@ Other Lua GitHub actions: Install Lua: (Will typically default to the latest release, 5.4.4 as of this readme) ```yaml -- uses: leafo/gh-actions-lua@v10 +- uses: luarocks/gh-actions-lua@v10 ``` Install specific version of Lua: ```yaml -- uses: leafo/gh-actions-lua@v10 +- uses: luarocks/gh-actions-lua@v10 with: luaVersion: "5.1.5" ``` @@ -36,7 +36,7 @@ Install specific version of Lua: Install specific version of LuaJIT: ```yaml -- uses: leafo/gh-actions-lua@v10 +- uses: luarocks/gh-actions-lua@v10 with: luaVersion: "luajit-2.1.0-beta3" ``` @@ -47,7 +47,7 @@ include this line on non-Windows platforms, as the action will do nothing in tho ```yaml - uses: ilammy/msvc-dev-cmd@v1 -- uses: leafo/gh-actions-lua@v10 +- uses: luarocks/gh-actions-lua@v10 ``` ## Inputs @@ -90,7 +90,7 @@ Additional flags to pass to `make` when building Lua. Example value: ```yaml -- uses: leafo/gh-actions-lua@master +- uses: luarocks/gh-actions-lua@master with: luaVersion: 5.3 luaCompileFlags: LUA_CFLAGS="-DLUA_INT_TYPE=LUA_INT_INT" @@ -117,11 +117,11 @@ jobs: steps: - uses: actions/checkout@master - - uses: leafo/gh-actions-lua@v10 + - uses: luarocks/gh-actions-lua@v10 with: luaVersion: "5.1.5" - - uses: leafo/gh-actions-luarocks@v4 + - uses: luarocks/gh-actions-luarocks@v4 - name: build run: | @@ -154,7 +154,7 @@ jobs: steps: - uses: actions/checkout@master - - uses: leafo/gh-actions-lua@v10 + - uses: luarocks/gh-actions-lua@v10 with: luaVersion: ${{ matrix.luaVersion }}