Skip to content

Commit

Permalink
[#2252] Update ubuntu runner (#18)
Browse files Browse the repository at this point in the history
Update ubuntu runner to ubuntu-24.04

This PR updates the CI configuration to ubuntu 24.04 as the runner.
This ensures that our code is deployed on the latest Ubuntu version,
providing better compatibility and early detection of potential issues.
  • Loading branch information
JoanneHing authored Feb 10, 2025
1 parent 283aba7 commit 07e8d6e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,17 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'

- name: Install dependencies
run: pip install requests

Expand Down

0 comments on commit 07e8d6e

Please sign in to comment.