Skip to content

Commit 06ce729

Browse files
committed
ci: use ubuntu-latest while arc is unavailable; drop redundant actionlint install
The arc runner pool depends on the in-cluster ARC controller in kustomize-cluster, which is offline during the libvirt migration. Move to ubuntu-latest until ARC runners are back. Drops the manual actionlint download — pre-commit already installs it via the rhysd/actionlint hook (now pinned to v1.7.12 from the companion pre-commit-config bump).
1 parent 753c4d7 commit 06ce729

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/_ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ on:
1111
jobs:
1212
lint:
1313
name: Lint
14-
runs-on: arc
14+
# ubuntu-latest while arc-dind runners are unavailable during the libvirt
15+
# migration. Revert to `arc` once the new k3s cluster has ARC runners up.
16+
runs-on: ubuntu-latest
1517
steps:
1618
- name: Checkout
1719
uses: actions/checkout@v4
@@ -21,12 +23,5 @@ jobs:
2123
with:
2224
python-version: "3.12"
2325

24-
- name: Install actionlint
25-
run: |
26-
mkdir -p "$HOME/.local/bin"
27-
curl -sSL https://github.com/rhysd/actionlint/releases/download/v1.7.7/actionlint_1.7.7_linux_amd64.tar.gz | \
28-
tar xz -C "$HOME/.local/bin" actionlint
29-
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
30-
3126
- name: Run pre-commit
3227
uses: pre-commit/action@v3.0.1

0 commit comments

Comments
 (0)