From eed19193a625afb926d33940ce0089a276c1f544 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 16:18:52 +0000 Subject: [PATCH] fix(ci): replace runners-privilegedescalation with ubuntu-latest and add Node.js setup The self-hosted runner label runners-privilegedescalation has been deprecated. Migrate to ubuntu-latest which requires adding an explicit Node.js setup step since ubuntu-latest does not have Node.js pre-installed. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3586245..056e122 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,11 +8,16 @@ on: jobs: lint: - runs-on: runners-privilegedescalation + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v6 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + - name: Lint Markdown uses: DavidAnson/markdownlint-cli2-action@v22 with: