diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-08 13:14:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-08 13:14:04 +0300 |
commit | 43a97b7f0053313b43906371dbdc226271e6c8ab (patch) | |
tree | a6aad02a616742f4a44b2dcdb39415c4b4cb6e8e | |
parent | 64c9d531df0efc3f4e85be6d69e5695831993430 (diff) | |
download | luasocket-43a97b7f0053313b43906371dbdc226271e6c8ab.tar.gz luasocket-43a97b7f0053313b43906371dbdc226271e6c8ab.tar.bz2 luasocket-43a97b7f0053313b43906371dbdc226271e6c8ab.zip |
ci: Update Luacheck to v1+, use newer Ubuntu runner images
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/luacheck.yml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d119d0..49c2c73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -13,7 +13,7 @@ jobs: | |||
13 | fail-fast: false | 13 | fail-fast: false |
14 | matrix: | 14 | matrix: |
15 | luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty" ] | 15 | luaVersion: [ "5.4", "5.3", "5.2", "5.1", "luajit", "luajit-openresty" ] |
16 | platform: [ "ubuntu-20.04", "macos-11", "windows-2022" ] | 16 | platform: [ "ubuntu-22.04", "macos-11", "windows-2022" ] |
17 | runs-on: ${{ matrix.platform }} | 17 | runs-on: ${{ matrix.platform }} |
18 | steps: | 18 | steps: |
19 | - name: Checkout | 19 | - name: Checkout |
diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml index 2f20456..9cb784c 100644 --- a/.github/workflows/luacheck.yml +++ b/.github/workflows/luacheck.yml | |||
@@ -5,9 +5,9 @@ on: [push, pull_request] | |||
5 | jobs: | 5 | jobs: |
6 | 6 | ||
7 | luacheck: | 7 | luacheck: |
8 | runs-on: ubuntu-20.04 | 8 | runs-on: ubuntu-22.04 |
9 | steps: | 9 | steps: |
10 | - name: Checkout | 10 | - name: Checkout |
11 | uses: actions/checkout@v3 | 11 | uses: actions/checkout@v4 |
12 | - name: Luacheck | 12 | - name: Luacheck |
13 | uses: lunarmodules/luacheck@v0 | 13 | uses: lunarmodules/luacheck@v1 |