From 85f6186dd1715a9a370b1be462fef0be3d34d7fe Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 6 Apr 2026 12:08:31 -0400 Subject: [PATCH] revert(ci): restore GitHub-hosted runners Reverts 5ec99ceef85583c9dbd2a86e2e9d11676a0cf0b3 ("ci: use self-hosted runners (#13)") so this repo no longer depends on the netcup self-hosted runner fleet. --- .github/workflows/ci.yaml | 8 ++++---- .github/workflows/luarocks.yaml | 2 +- .github/workflows/quality.yaml | 10 +++++----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5709f7e..83cc1c7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ on: jobs: changes: - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest outputs: lua: ${{ steps.changes.outputs.lua }} steps: @@ -26,7 +26,7 @@ jobs: - 'selene.toml' lua-format: - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: @@ -38,7 +38,7 @@ jobs: args: --check . lua-lint: - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: @@ -49,7 +49,7 @@ jobs: args: --display-style quiet . lua-typecheck: - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: diff --git a/.github/workflows/luarocks.yaml b/.github/workflows/luarocks.yaml index b369d4f..95eaf0f 100644 --- a/.github/workflows/luarocks.yaml +++ b/.github/workflows/luarocks.yaml @@ -11,7 +11,7 @@ jobs: publish: needs: ci - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 9f0f5ae..bac492d 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -8,7 +8,7 @@ on: jobs: changes: - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest outputs: lua: ${{ steps.changes.outputs.lua }} markdown: ${{ steps.changes.outputs.markdown }} @@ -30,7 +30,7 @@ jobs: lua-format: name: Lua Format Check - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: @@ -43,7 +43,7 @@ jobs: lua-lint: name: Lua Lint Check - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: @@ -56,7 +56,7 @@ jobs: lua-typecheck: name: Lua Type Check - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.lua == 'true' }} steps: @@ -70,7 +70,7 @@ jobs: markdown-format: name: Markdown Format Check - runs-on: [self-hosted, linux, x64, netcup, general] + runs-on: ubuntu-latest needs: changes if: ${{ needs.changes.outputs.markdown == 'true' }} steps: