Skip to content

Commit

Permalink
Run Linux CI jobs on Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
robinlinden committed Sep 14, 2024
1 parent 78d4aaf commit 03a05ba
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
ktlint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.3.1/ktlint && chmod a+x ktlint
Expand All @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
- macos-12
- windows-2022
steps:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
script: ./gradlew connectedCheck || { adb logcat -d; exit 1; }

tox4j:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -88,7 +88,10 @@ jobs:
echo "y" | $SDKMANAGER "ndk;21.4.7075529"
- name: Install tox4j dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: sudo apt-get update && sudo apt install yasm
run: |
sudo apt-get update && sudo apt install yasm
curl -s "https://get.sdkman.io" | bash
sdk install sbt
- name: Build tox4j
if: steps.cache.outputs.cache-hit != 'true'
run: |
Expand All @@ -107,7 +110,7 @@ jobs:
include-hidden-files: true

bazel:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -128,7 +131,7 @@ jobs:
- run: bazel test //...

buildifier:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install
Expand All @@ -139,7 +142,7 @@ jobs:
run: ./buildifier --lint=warn --warnings=all -mode diff WORKSPACE $(find . -type f -name "BUILD.*")

prettier:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: npm install --global [email protected]
Expand Down

0 comments on commit 03a05ba

Please sign in to comment.