From f92d9f773288db6b00c2342421433c0378f2de4b Mon Sep 17 00:00:00 2001 From: StephanGerbeth Date: Mon, 9 Sep 2024 17:37:03 +0200 Subject: [PATCH] fix(sonarcloud): added forgotten os strategy --- .github/workflows/beta.yml | 6 ++++++ .github/workflows/main.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 03816d0..d7d8074 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -47,6 +47,12 @@ jobs: sonarcloud: name: SonarCloud runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest] + node: [20] + steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c609226..d7723f0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,6 +47,12 @@ jobs: sonarcloud: name: SonarCloud runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest] + node: [20] + steps: - uses: actions/checkout@v3 with: