Skip to content

Commit 0c2a8f3

Browse files
committed
ci: Update runner environment to use ubuntu-latest
Changed the runner environment from self-hosted and ubuntu-24.04 to ubuntu-latest for consistency and improved compatibility across workflows. Signed-off-by: Chiho Sin <[email protected]>
1 parent 2e33917 commit 0c2a8f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/fobe_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030
jobs:
3131
build:
3232
name: Build ${{ inputs.board }}
33-
runs-on: self-hosted
33+
runs-on: ubuntu-latest
3434
steps:
3535
- name: Clean workspace
3636
run: |

.github/workflows/fobe_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
port:
2323
- espressif
2424
- nordic
25-
runs-on: ubuntu-24.04
25+
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@v5
2828
- name: Generate matrix
@@ -47,7 +47,7 @@ jobs:
4747

4848
version:
4949
name: Determine Version
50-
runs-on: ubuntu-24.04
50+
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@v5
5353
with:
@@ -105,7 +105,7 @@ jobs:
105105
create-release:
106106
name: Create or Update Release
107107
needs: [setup, version]
108-
runs-on: ubuntu-24.04
108+
runs-on: ubuntu-latest
109109
permissions:
110110
contents: write
111111
steps:

0 commit comments

Comments
 (0)