From 786f456c2558f07c5a396e25ecb635a3c5480313 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Wed, 16 Apr 2025 03:18:58 +0000 Subject: Use the latest Ubuntu version not specific old version (#6825) * Use the latest Ubuntu version not specific old version --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to '.github/workflows/release.yml') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da5577c7c..617dd574c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,13 +27,13 @@ jobs: - { os: linux, platform: x86_64, - runs-on: ubuntu-22.04, + runs-on: ubuntu-latest, compiler: gcc, } - { os: linux, platform: aarch64, - runs-on: ubuntu-22.04-arm, + runs-on: ubuntu-24.04-arm, compiler: gcc, } - { os: windows, runs-on: windows-latest, compiler: cl } @@ -56,6 +56,12 @@ jobs: with: submodules: "recursive" fetch-depth: "0" + - name: Install dependencies + run: | + if [[ "${{ matrix.os }}" = "linux" ]]; then + sudo apt-get update + sudo apt-get install -y libx11-dev + fi - name: Setup uses: ./.github/actions/common-setup with: -- cgit v1.2.3