Skip to content

Commit ee9e349

Browse files
authored
Update actions to ubuntu-latest (betaflight#14114)
Merging to ensure completed before change over to runners.
1 parent 3892808 commit ee9e349

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/auto-close.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
close-pr:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Code Checkout
1717
uses: actions/checkout@v4

.github/workflows/build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
release:
1515
name: Release
1616
needs: ci
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-latest
1818
steps:
1919
- name: Code Checkout
2020
uses: actions/checkout@v4

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
setup:
1717
name: Setup
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-latest
1919
outputs:
2020
targets: ${{ steps.get-targets.outputs.targets }}
2121
steps:
@@ -43,7 +43,7 @@ jobs:
4343
build:
4444
name: Build
4545
needs: setup
46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
4949
target: ${{ fromJson(needs.setup.outputs.targets) }}
@@ -79,7 +79,7 @@ jobs:
7979

8080
test:
8181
name: Test
82-
runs-on: ubuntu-22.04
82+
runs-on: ubuntu-latest
8383
steps:
8484
- uses: actions/checkout@v4
8585

@@ -96,7 +96,7 @@ jobs:
9696
name: Complete
9797
needs: [build, test]
9898
if: ${{ always() }}
99-
runs-on: ubuntu-22.04
99+
runs-on: ubuntu-latest
100100
steps:
101101
- name: Check build matrix result
102102
if: ${{ needs.build.result != 'success' }}

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
release:
3030
name: Nightly release
3131
needs: ci
32-
runs-on: ubuntu-22.04
32+
runs-on: ubuntu-latest
3333
steps:
3434
- name: Code Checkout
3535
uses: actions/checkout@v4

.github/workflows/pr-cloud-comment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
comment-pr:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Add comment about cloud build
1717
uses: thollander/actions-comment-pull-request@v2

0 commit comments

Comments
 (0)