diff --git a/.github/workflows/TestJuliaVersions.yml b/.github/workflows/TestJuliaVersions.yml index 4828592..01dd7c8 100644 --- a/.github/workflows/TestJuliaVersions.yml +++ b/.github/workflows/TestJuliaVersions.yml @@ -10,7 +10,7 @@ jobs: continue-on-error: true strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-noble] julia-version: ['1.10.0', 'nightly'] steps: @@ -28,16 +28,16 @@ jobs: id: cache-libprecice uses: actions/cache@v4 with: - path: libprecice3_3.1.0_focal.deb - key: libprecice3_3.1.0_focal.deb1 - restore-keys: libprecice3_3.1.0_focal.deb1 + path: libprecice3_3.3.0_noble.deb + key: libprecice3_3.3.0_noble.deb1 + restore-keys: libprecice3_3.3.0_noble.deb1 - name: Download preCICE if: steps.cache-libprecice.outputs.cache-hit != 'true' - run: wget https://github.com/precice/precice/releases/download/v3.1.0/libprecice3_3.1.0_focal.deb + run: wget https://github.com/precice/precice/releases/download/v3.3.0/libprecice3_3.3.0_noble.deb - name: Install preCICE - run: sudo apt install ./libprecice3_3.1.0_focal.deb + run: sudo apt install ./libprecice3_3.3.0_noble.deb - name: Build Package uses: julia-actions/julia-buildpkg@v1