Skip to content

Commit 00c8628

Browse files
committed
CI: Fix apply test
We introduced a regression in 661c5f9 where the operating system was changed, but later on is a test for the os string. both need to match.
1 parent 7880197 commit 00c8628

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
strategy:
179179
fail-fast: false
180180
matrix:
181-
os: [ubuntu-24.04, windows-2025]
181+
os: [ubuntu-24.04, windows-2022]
182182
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
183183
runs-on: ${{ matrix.os }}
184184
steps:
@@ -195,14 +195,14 @@ jobs:
195195
with:
196196
path: modules
197197
key: ${{ runner.os }}-modules-${{ hashFiles('**/Puppetfile') }}
198-
- if: matrix.os == 'ubuntu-22.04'
198+
- if: matrix.os == 'ubuntu-24.04'
199199
uses: ./.github/actions/sudo_setup
200200
- if: matrix.os == 'windows-latest'
201201
uses: ./.github/actions/windows_agent_setup
202-
- if: matrix.os == 'ubuntu-22.04'
202+
- if: matrix.os == 'ubuntu-24.04'
203203
name: Run tests
204204
run: bundle exec rake ci:apply:linux
205-
- if: matrix.os == 'windows-latest'
205+
- if: matrix.os == 'windows-2022'
206206
name: Run tests
207207
run: bundle exec rake ci:apply:windows
208208

0 commit comments

Comments
 (0)