Skip to content

Commit d580ded

Browse files
authored
Merge pull request #143 from puppetlabs/CAT-2416-Address_almalinux_8_provisioning_issue
(CAT-2416) Address AlmaLinux 8 provisioning issue
2 parents e95154c + 9426f15 commit d580ded

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/module_acceptance.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
runs_on:
88
description: "The operating system used for the runner."
99
required: false
10-
default: "ubuntu-latest"
1110
type: "string"
1211
flags:
1312
description: "Additional flags to pass to matrix_from_metadata_v3."
@@ -34,7 +33,7 @@ jobs:
3433

3534
setup_matrix:
3635
name: "Setup Test Matrix"
37-
runs-on: ${{ inputs.runs_on }}
36+
runs-on: ubuntu-latest
3837
outputs:
3938
acceptance_matrix: ${{ steps.get-matrix.outputs.matrix }}
4039

@@ -66,7 +65,7 @@ jobs:
6665
acceptance:
6766
name: "Acceptance tests (${{matrix.platforms.label}}, ${{matrix.collection}})"
6867
needs: "setup_matrix"
69-
runs-on: ${{ inputs.runs_on }}
68+
runs-on: ${{ inputs.runs_on || matrix.platforms.runner }}
7069
timeout-minutes: 180
7170
strategy:
7271
fail-fast: false

0 commit comments

Comments
 (0)