Skip to content

Commit bc692ea

Browse files
committed
fix: change default runner to ubuntu-latest in CI workflow
Signed-off-by: Nikolai Emil Damm <[email protected]>
1 parent af7af96 commit bc692ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-gitops-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
RUNNER:
1313
required: false
1414
type: string
15-
default: linux-arm64
15+
default: ubuntu-latest
1616
HOSTS_FILE:
1717
required: false
1818
type: string
@@ -29,7 +29,7 @@ on:
2929

3030
jobs:
3131
test:
32-
runs-on: ${{ inputs.RUNNER }}
32+
runs-on: ${{ inputs.RUNNER || 'linux-arm64' }}
3333
# Ignore Require Workflow runs
3434
if: github.repository != 'devantler-tech/reusable-workflows' && inputs.SKIP != true && github.event_name != 'merge_group'
3535
steps:

0 commit comments

Comments
 (0)