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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

triage:
name: Triage
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 5
permissions:
actions: read
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
name: Lint (Kotlin)
needs: [triage]
if: needs.triage.outputs.run == 'true' && needs.triage.outputs.code == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 15
steps:
- name: Checkout
Expand All @@ -184,7 +184,7 @@ jobs:
name: Lint (Actions)
needs: [triage]
if: needs.triage.outputs.run == 'true' && needs.triage.outputs.code == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 5
steps:
- name: Checkout
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
tasks: :minimessage:koverBinaryReport :serializer:koverBinaryReport :minimessage:jar :serializer:jar
- shard: runtime
tasks: :coroutines:koverBinaryReport :paper:koverBinaryReport :test:koverBinaryReport :test-snapshot:koverBinaryReport :bom:build :coroutines:jar :paper:jar :test:jar :test-snapshot:jar
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
permissions:
checks: write
Expand Down Expand Up @@ -361,7 +361,7 @@ jobs:
name: Aggregate
needs: [build]
if: needs.build.result == 'success'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 15
permissions:
contents: read
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
name: Dokka
needs: [triage]
if: needs.triage.outputs.run == 'true' && needs.triage.outputs.code == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
contents: read
Expand Down Expand Up @@ -529,7 +529,7 @@ jobs:
&& github.event_name == 'pull_request'
&& needs.aggregate.result != 'cancelled'
&& needs.aggregate.result != 'skipped'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 25
permissions:
actions: read
Expand Down Expand Up @@ -660,7 +660,7 @@ jobs:
name: Vanilla conformance
needs: [triage]
if: needs.triage.outputs.run == 'true' && needs.triage.outputs.vanilla == 'true'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
permissions:
checks: write
Expand Down Expand Up @@ -717,7 +717,7 @@ jobs:
dependencies:
name: Dependencies
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
steps:
- name: Checkout
Expand All @@ -734,7 +734,7 @@ jobs:
commits:
name: Commits
if: github.event_name == 'push'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
steps:
- name: Checkout
Expand Down Expand Up @@ -764,7 +764,7 @@ jobs:
name: Status
if: always()
needs: [triage, lint-kotlin, lint-actions, build, aggregate, dokka, vanilla, dependencies]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 5
steps:
- name: Evaluate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maintainer-approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
&& (github.event.review.state == 'approved'
|| github.event.review.state == 'changes_requested'
|| github.event.review.state == 'dismissed'))
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 5
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-metrics-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
publish:
name: Publish PR metrics
if: github.event.workflow_run.event == 'pull_request'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
actions: read
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# ─── Title validation ────────────────────────────────────────────────────────
title:
name: Title
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
contents: read
Expand All @@ -44,7 +44,7 @@ jobs:
# ─── Commit subjects ────────────────────────────────────────────────────────
commits:
name: Commits
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
contents: read
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
labels:
name: Labels
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qodana-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
publish:
name: Publish Qodana result
if: github.event.workflow_run.conclusion != 'skipped'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
timeout-minutes: 10
permissions:
actions: read
Expand Down
Loading