From f7ff2d01b445a23ce1da09a0e7dfb3b05432548d Mon Sep 17 00:00:00 2001 From: Mikolaj-A-Kowalski Date: Thu, 17 Apr 2025 19:12:30 +0200 Subject: [PATCH] [ci] update deprecated ubuntu 20.04 runners Ubuntu 20.04 LTS reached its end of life and the runner is no longer available. To avoid similar problems in the future we will run on the latest version of Ubuntu. We don't need to worry about the environment since we run tests in a container anyway. --- .github/workflows/build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 33b4fc16..e255770b 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: compiler: [gfortran10, gfortran11, gfortran12] - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest container: image: mikolajkowalski/scone-test:${{matrix.compiler}}_pfu4 steps: @@ -25,7 +25,7 @@ jobs: ctest --output-on-faliure cd - build-and-test-debug: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest container: image: mikolajkowalski/scone-test:gfortran12_pfu4 steps: @@ -39,7 +39,7 @@ jobs: ctest --output-on-faliure cd - build-and-test-no-openmp: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest container: image: mikolajkowalski/scone-test:gfortran12_pfu4 steps: