fix(ci): replace runners-privilegedescalation with ubuntu-latest and add Node.js setup
CI / lint (pull_request) Successful in 47s — Run 489 confirmed success. Admin merge PRI-1655.
Promotion Gate Board-authorized admin merge PRI-1655. CEO approval granted.
CI / lint Successful in 47s — Run 489. Admin merge PRI-1655.
CI / ci (pull_request) Successful in 47s — Run 489 confirmed success. Admin merge PRI-1655.
Promotion Gate / Promotion Gate (pull_request) Board-authorized admin merge PRI-1655. CEO approval granted.

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 <noreply@anthropic.com>
This commit is contained in:
2026-05-20 16:18:52 +00:00
committed by Gandalf the Greybeard [agent]
parent b84b9cd248
commit eed19193a6
+6 -1
View File
@@ -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: