From 636dd2afa8fa4e5229d68993cf1dfc19b3f9bd57 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:35:32 +0100 Subject: [PATCH] Fix CI builds by explicitly requiring ubuntu-22.04 --- .github/workflows/wled-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wled-ci.yml b/.github/workflows/wled-ci.yml index d311af4a..8a44db71 100644 --- a/.github/workflows/wled-ci.yml +++ b/.github/workflows/wled-ci.yml @@ -6,7 +6,7 @@ jobs: get_default_envs: name: Gather Environments - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - name: Cache pip @@ -31,7 +31,7 @@ jobs: build: name: Builds - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: get_default_envs strategy: fail-fast: false @@ -74,7 +74,7 @@ jobs: path: build_output/release/*.bin release: name: Create Release - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [get_default_envs, build] if: startsWith(github.ref, 'refs/tags/') steps: