fix: use rpl-linux-runners for github.concur.com workflows

ubuntu-24.04 is a GitHub.com public runner label — not available on GHE.
All strat/* repos use rpl-linux-runners (confirmed from kms-lite, kms-operator, hermes).
This commit is contained in:
Rodin
2026-05-14 20:19:47 +00:00
parent 1b472cc6b4
commit 5c1a148a24
+4 -4
View File
@@ -22,7 +22,7 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-24.04 runs-on: rpl-linux-runners
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
@@ -33,7 +33,7 @@ jobs:
- run: go build -o review-bot ./cmd/review-bot - run: go build -o review-bot ./cmd/review-bot
review: review:
runs-on: ubuntu-24.04 runs-on: rpl-linux-runners
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
needs: test needs: test
strategy: strategy:
@@ -55,7 +55,7 @@ jobs:
- uses: ./.gitea/actions/review - uses: ./.gitea/actions/review
with: with:
# On GHES runners, vcs-url is ignored (composite action uses github.server_url). # On GHES runners, vcs-url is ignored (composite action uses github.server_url).
# Specifying gitea-url here causes the action to download the binary from # Specifying vcs-url here causes the action to download the binary from
# Gitea releases when strat/review-bot has no releases yet. # Gitea releases when strat/review-bot has no releases yet.
vcs-url: https://gitea.weiker.me vcs-url: https://gitea.weiker.me
action-repo: strat/review-bot action-repo: strat/review-bot
@@ -71,5 +71,5 @@ jobs:
conventions-file: CONVENTIONS.md conventions-file: CONVENTIONS.md
patterns-repo: rodin/go-patterns patterns-repo: rodin/go-patterns
patterns-files: README.md,patterns/ patterns-files: README.md,patterns/
llm-timeout: "600" timeout: "600"
system-prompt-file: ${{ matrix.system_prompt_file || '' }} system-prompt-file: ${{ matrix.system_prompt_file || '' }}