@@ -19,24 +19,24 @@ Other Lua GitHub actions:
1919
2020## Usage
2121
22- Install Lua: (Will typically default to the latest release, 5.4.4 as of this readme)
22+ Install Lua: (Will typically default to the latest release, 5.4.8 as of this readme)
2323
2424``` yaml
25- - uses : luarocks/gh-actions-lua@v10
25+ - uses : luarocks/gh-actions-lua@v11
2626` ` `
2727
2828Install specific version of Lua:
2929
3030` ` ` yaml
31- - uses : luarocks/gh-actions-lua@v10
31+ - uses : luarocks/gh-actions-lua@v11
3232 with :
3333 luaVersion : " 5.1.5"
3434` ` `
3535
3636Install specific version of LuaJIT:
3737
3838` ` ` yaml
39- - uses : luarocks/gh-actions-lua@v10
39+ - uses : luarocks/gh-actions-lua@v11
4040 with :
4141 luaVersion : " luajit-2.1.0-beta3"
4242` ` `
@@ -47,7 +47,7 @@ include this line on non-Windows platforms, as the action will do nothing in tho
4747
4848` ` ` yaml
4949- uses: ilammy/msvc-dev-cmd@v1
50- - uses: luarocks/gh-actions-lua@v10
50+ - uses: luarocks/gh-actions-lua@v11
5151` ` `
5252
5353# # Inputs
@@ -90,7 +90,7 @@ Additional flags to pass to `make` when building Lua.
9090Example value :
9191
9292` ` ` yaml
93- - uses: luarocks/gh-actions-lua@master
93+ - uses: luarocks/gh-actions-lua@v11
9494 with:
9595 luaVersion: 5.3
9696 luaCompileFlags: LUA_CFLAGS="-DLUA_INT_TYPE=LUA_INT_INT"
@@ -115,13 +115,13 @@ jobs:
115115 runs-on: ubuntu-latest
116116
117117 steps:
118- - uses: actions/checkout@master
118+ - uses: actions/checkout@v4
119119
120- - uses: luarocks/gh-actions-lua@v10
120+ - uses: luarocks/gh-actions-lua@v11
121121 with:
122122 luaVersion: "5.1.5"
123123
124- - uses: luarocks/gh-actions-luarocks@v4
124+ - uses: luarocks/gh-actions-luarocks@v6
125125
126126 - name: build
127127 run: |
@@ -153,8 +153,8 @@ jobs:
153153 luaVersion: ["5.1.5", "5.2.4", "luajit-2.1.0-beta3"]
154154
155155 steps:
156- - uses: actions/checkout@master
157- - uses: luarocks/gh-actions-lua@v10
156+ - uses: actions/checkout@v4
157+ - uses: luarocks/gh-actions-lua@v11
158158 with:
159159 luaVersion: ${{ matrix.luaVersion }}
160160
0 commit comments