Skip to content

Commit 78079d2

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 78079d2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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
200-
- if: matrix.os == 'windows-latest'
200+
- if: matrix.os == 'windows-2025'
201201
uses: ./.github/actions/windows_agent_setup
202202
- if: matrix.os == 'ubuntu-22.04'
203203
name: Run tests
204204
run: bundle exec rake ci:apply:linux
205-
- if: matrix.os == 'windows-latest'
205+
- if: matrix.os == 'windows-2025'
206206
name: Run tests
207207
run: bundle exec rake ci:apply:windows
208208

0 commit comments

Comments
 (0)