Skip to content

Commit 10bc35f

Browse files
authored
chore(*): add Lua 5.5 compatibility and update some actions (#2)
1 parent 129a97f commit 10bc35f

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/unix_build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,19 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty"]
26+
luaVersion: ["5.1", "5.2", "5.3", "5.4", "5.5", "luajit-2.1.0-beta3", "luajit-openresty"]
2727

2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4
3131

32-
- uses: leafo/gh-actions-lua@v10
32+
- uses: luarocks/gh-actions-lua@master
3333
with:
3434
luaVersion: ${{ matrix.luaVersion }}
3535

36-
- uses: leafo/gh-actions-luarocks@v4
36+
- uses: luarocks/gh-actions-luarocks@master
37+
with:
38+
luaRocksVersion: "3.13.0"
3739

3840
- name: dependencies
3941
run: |

project-scm-1.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ description = {
2424
}
2525

2626
dependencies = {
27-
"lua >= 5.1, < 5.5",
27+
"lua >= 5.1, < 5.6",
2828
}
2929

3030
build = {

0 commit comments

Comments
 (0)