Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/agentics-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ permissions: {}
jobs:
close-expired-entities:
if: ${{ (!(github.event.repository.fork)) && github.event_name != 'push' && (github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' || inputs.operation == '') }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
discussions: write
issues: write
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

cleanup-cache-memory:
if: ${{ (!(github.event.repository.fork)) && github.event_name != 'push' && (github.event_name != 'workflow_dispatch' && github.event_name != 'workflow_call' || inputs.operation == '' || inputs.operation == 'clean_cache_memories') }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
actions: write
steps:
Expand All @@ -147,7 +147,7 @@ jobs:

run_operation:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation != '' && inputs.operation != 'safe_outputs' && inputs.operation != 'create_labels' && inputs.operation != 'activity_report' && inputs.operation != 'close_agentic_workflows_issues' && inputs.operation != 'clean_cache_memories' && inputs.operation != 'update_pull_request_branches' && inputs.operation != 'validate' && inputs.operation != 'forecast' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
actions: write
contents: write
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:

update_pull_request_branches:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'update_pull_request_branches' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

apply_safe_outputs:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'safe_outputs' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
actions: read
contents: write
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:

create_labels:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'create_labels' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
contents: read
issues: write
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:

activity_report:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'activity_report' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
timeout-minutes: 120
permissions:
actions: read
Expand Down Expand Up @@ -434,7 +434,7 @@ jobs:

forecast_report:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'forecast' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
timeout-minutes: 60
permissions:
actions: read
Expand Down Expand Up @@ -534,7 +534,7 @@ jobs:

close_agentic_workflows_issues:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'close_agentic_workflows_issues' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-slim
runs-on: ubuntu-26.04
permissions:
issues: write
steps:
Expand Down Expand Up @@ -565,7 +565,7 @@ jobs:

validate_workflows:
if: ${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') && inputs.operation == 'validate' && (!(github.event.repository.fork)) }}
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
issues: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permissions:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compile-agentic-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
compile:
name: Compile Agentic Workflows
runs-on: ubuntu-latest
runs-on: ubuntu-26.04

steps:
- name: Harden Runner
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:
jobs:
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04

# Set the permissions to the lowest permissions possible needed for your steps.
# Copilot will be given its own token for its operations.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

jobs:
dependency-review:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
jobs:
deploy:
if: ${{ github.event.inputs.fix_mimetypes != 'true' }}
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
# Full prebuild + Vite + minify + S3 deploy routinely runs >15 minutes
# as the article corpus grows, so keep explicit headroom.
timeout-minutes: 45
Expand Down Expand Up @@ -470,7 +470,7 @@ jobs:
# ── Fix MIME types on existing S3 objects (manual trigger only) ──
fix-mimetypes:
if: ${{ github.event.inputs.fix_mimetypes == 'true' }}
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/exec-brief-translation-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ concurrency:
jobs:
validate:
name: Validate executive-brief translation PR
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
timeout-minutes: 10

steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/javascript-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# Vitest Unit Tests
unit-tests:
name: Unit Tests (Vitest)
runs-on: ubuntu-latest
runs-on: ubuntu-26.04

steps:
- name: Harden Runner
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
# Vite Build Test
build-test:
name: Build Test (Vite)
runs-on: ubuntu-latest
runs-on: ubuntu-26.04

steps:
- name: Harden Runner
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
# (Other E2E tests moved to separate workflows: test-homepage.yml, test-dashboard.yml, test-news.yml)
multi-language-tests:
name: Multi-Language Sanity Tests
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
needs: build-test
# This job covers homepage + dashboard + news across all 14 languages
# (~3× the work of the per-page Cypress jobs), so it needs a larger budget
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
# Never blocks the pipeline (continue-on-error: true).
node-next-compat:
name: Node.js Nightly Compat
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
continue-on-error: true
# Bound the whole job so a hung checkout/fetch (transient GitHub-hosted
# runner flake — see PR #2428 run 25737016620 where `git fetch` stalled
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
# Summary Report
test-summary:
name: Test Summary
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
needs: [unit-tests, build-test, multi-language-tests, node-next-compat]
if: always()

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jsdoc-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
typedoc-generation:
name: Generate & Validate TypeDoc
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
timeout-minutes: 10

steps:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
# deploy-docs:
# name: Deploy to GitHub Pages
# needs: jsdoc-generation
# runs-on: ubuntu-latest
# runs-on: ubuntu-26.04
# if: github.ref == 'refs/heads/main'
# steps:
# - uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/knip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
knip:
name: Run Knip
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
labeler:
name: Label Pull Request
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
# Enhanced permissions for label management
permissions:
contents: read # Required to check out the code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lighthouse-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:
jobs:
lighthouse:
name: Lighthouse Performance Audit
runs-on: ubuntu-latest
runs-on: ubuntu-26.04

steps:
- name: Harden Runner
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/news-pat-pr-fallback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ concurrency:
jobs:
fallback:
name: Host-side PAT PR fallback
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: write
pull-requests: write
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
typescript-lint:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
retention-days: 30

html-validation:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
retention-days: 30

link-checker:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
retention-days: 30

summary:
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
needs: [typescript-lint, html-validation, link-checker]
if: always()
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate-articles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:
jobs:
regenerate:
name: Regenerate article.md + news HTML (all langs)
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
timeout-minutes: 60

steps:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# --------------------------------------------------------------------------
prepare:
name: Prepare Release
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: write # Required for git auto-commit
outputs:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
build:
name: Build Application
needs: [prepare]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
steps:
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
unit-tests:
name: Unit Tests
needs: [prepare]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
steps:
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
typedoc:
name: Generate TypeDoc
needs: [prepare]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
steps:
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
e2e:
name: E2E (${{ matrix.shard.name }})
needs: [prepare, build]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
strategy:
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
package:
name: Build Release Package
needs: [prepare, build]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
id-token: write # Required for OIDC
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
deploy-docs:
name: Deploy Documentation
needs: [prepare, build, unit-tests, typedoc, e2e]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: write # Required for github-pages-deploy-action
steps:
Expand Down Expand Up @@ -673,7 +673,7 @@ jobs:
release:
name: Create GitHub Release
needs: [prepare, build, package, unit-tests, e2e]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: write # Required to create releases
steps:
Expand Down Expand Up @@ -777,7 +777,7 @@ jobs:
npm-publish:
name: Publish to npm
needs: [prepare, build, unit-tests, typedoc, e2e, package, deploy-docs, release]
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
contents: read
id-token: write # Required for npm provenance
Expand Down Expand Up @@ -839,7 +839,7 @@ jobs:
name: Deployment Summary
needs: [prepare, release, deploy-docs, npm-publish]
if: always()
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
steps:
- name: Print summary
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions: read-all
jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
runs-on: ubuntu-26.04
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
Expand Down
Loading
Loading