Skip to content

Commit

Permalink
ci: bump Ubuntu runners to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Sep 2, 2024
1 parent f66c44d commit d95f376
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .changeset/cuddly-apricots-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
permissions:
contents: write # create Git tags
if: ${{ github.repository == 'microsoft/rnx-kit' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
permissions:
contents: write # deploy to GitHub Pages (peaceiris/actions-gh-pages)
needs: build_and_publish
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
jobs:
review:
name: "Review"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
node-version: [18, 20]
os: [ubuntu-22.04, windows-2022]
os: [ubuntu-24.04, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
shell: bash
build-android-test-app:
name: "Build Android"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
working-directory: packages/test-app
build-website:
name: "Build the website"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rnx-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build-android:
name: Build Android
if: ${{ github.event.inputs.platform == 'android' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
distribute:
name: Distribute build
needs: [build-android, build-ios]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.event.inputs.distribution != 'local' && !cancelled() && !failure() }} # `success()` excludes skipped jobs
steps:
- name: Download build artifact
Expand Down
4 changes: 2 additions & 2 deletions incubator/build/workflows/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build-android:
name: Build Android
if: ${{ github.event.inputs.platform == 'android' }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
distribute:
name: Distribute build
needs: [build-android, build-ios]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.event.inputs.distribution != 'local' && !cancelled() && !failure() }} # `success()` excludes skipped jobs
steps:
- name: Download build artifact
Expand Down

0 comments on commit d95f376

Please sign in to comment.