Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: leafo/gh-actions-lua@v8
- uses: luarocks/gh-actions-lua@816ec4c55af2f6dcb9dfcba372d93dd1fb5fa8f2
with:
luaVersion: "5.4"

- uses: leafo/gh-actions-luarocks@v4
- uses: luarocks/gh-actions-luarocks@e42874645a111d78a858c3dba7530bdd707b21a4
with:
luaRocksVersion: "3.13.0"

- name: dependencies
run: |
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/unix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,24 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

strategy:
fail-fast: false
matrix:
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-openresty"]
luaVersion: ["5.1", "5.2", "5.3", "5.4", "5.5", "luajit-openresty"]

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: leafo/gh-actions-lua@v8
- uses: luarocks/gh-actions-lua@816ec4c55af2f6dcb9dfcba372d93dd1fb5fa8f2
with:
luaVersion: ${{ matrix.luaVersion }}

- uses: leafo/gh-actions-luarocks@v4
- uses: luarocks/gh-actions-luarocks@e42874645a111d78a858c3dba7530bdd707b21a4
with:
luaRocksVersion: "3.13.0"

- name: dependencies
run: |
Expand Down
Loading