We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
os
ubuntu-latest
1 parent 9a6b7fc commit 34eebbbCopy full SHA for 34eebbb
2 files changed
.github/workflows/ci-orchestrator.yml
@@ -12,11 +12,9 @@ on:
12
default: 'emulator-5554'
13
14
jobs:
15
- # Stage 1: Pre-commit checks
+ # Stage 1: Pre-commit checks (always runs on ubuntu-latest)
16
pre-commit:
17
uses: ./.github/workflows/stage-pre-commit.yml
18
- with:
19
- os: ubuntu-latest
20
secrets: inherit
21
22
# Stage 2: Test
.github/workflows/stage-pre-commit.yml
@@ -2,14 +2,10 @@ name: Pre-commit
2
3
on:
4
workflow_call:
5
- inputs:
6
- os:
7
- required: true
8
- type: string
9
10
11
- runs-on: ${{ inputs.os }}
+ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
0 commit comments