From c5589d0fba5a9c2718ec04959487d3a36b0146ca Mon Sep 17 00:00:00 2001 From: ptahmose Date: Sat, 19 Oct 2024 12:28:16 +0200 Subject: [PATCH] Update Linux build to ubuntu-24.04 in GitHub Actions The build configuration for the GitHub Actions workflow has been updated. Specifically, the operating system for the Linux build has been changed from `ubuntu-latest` to `ubuntu-24.04`. The Windows build remains on `windows-latest`. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cdc1c54..501cb29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest] # Windows and Linux builds + os: [ubuntu-24.04, windows-latest] # Windows and Linux builds outputs: linuxx64_matlab_artifact: ${{ steps.prepare_linux_artifact.outputs.linuxx64_matlab_build }} linuxx64_octave_artifact: ${{ steps.prepare_linux_artifact.outputs.linuxx64_octave_build }}