From 78079d28d7633017d1ea22e1f28dce79d35cd6e8 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Tue, 16 Sep 2025 23:21:38 +0200 Subject: [PATCH] CI: Fix apply test We introduced a regression in 661c5f9a9d903748a40182f160361a264b591960 where the operating system was changed, but later on is a test for the os string. both need to match. --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3bbc7617a..4dc2309f6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -195,14 +195,14 @@ jobs: with: path: modules key: ${{ runner.os }}-modules-${{ hashFiles('**/Puppetfile') }} - - if: matrix.os == 'ubuntu-22.04' + - if: matrix.os == 'ubuntu-24.04' uses: ./.github/actions/sudo_setup - - if: matrix.os == 'windows-latest' + - if: matrix.os == 'windows-2025' uses: ./.github/actions/windows_agent_setup - if: matrix.os == 'ubuntu-22.04' name: Run tests run: bundle exec rake ci:apply:linux - - if: matrix.os == 'windows-latest' + - if: matrix.os == 'windows-2025' name: Run tests run: bundle exec rake ci:apply:windows