Skip to content

Commit 636dd2a

Browse files
authored
Fix CI builds by explicitly requiring ubuntu-22.04
1 parent 6e14dac commit 636dd2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wled-ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66

77
get_default_envs:
88
name: Gather Environments
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Cache pip
@@ -31,7 +31,7 @@ jobs:
3131

3232
build:
3333
name: Builds
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-22.04
3535
needs: get_default_envs
3636
strategy:
3737
fail-fast: false
@@ -74,7 +74,7 @@ jobs:
7474
path: build_output/release/*.bin
7575
release:
7676
name: Create Release
77-
runs-on: ubuntu-latest
77+
runs-on: ubuntu-22.04
7878
needs: [get_default_envs, build]
7979
if: startsWith(github.ref, 'refs/tags/')
8080
steps:

0 commit comments

Comments
 (0)