Skip to content

Commit 989f8e6

Browse files
authored
Merge pull request #2 from luau-project/prepare-v11
Lua: minor changes preparing a new v11 tag
2 parents 5c54131 + d43b14f commit 989f8e6

2 files changed

Lines changed: 18 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: test
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
paths-ignore:
6+
- '*.md'
7+
pull_request:
8+
paths-ignore:
9+
- '*.md'
410

511
jobs:
612
test:

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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
2828
Install 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
3636
Install 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.
9090
Example 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

Comments
 (0)