From ef49e4113e5d719c18a7918733fd2018bc81da5a Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 16 Jan 2025 15:04:18 +0100 Subject: [PATCH] fix ubuntu at 22 for compatibility and update run action to v3 --- .github/workflows/codspeed-bench.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codspeed-bench.yml b/.github/workflows/codspeed-bench.yml index 5fdc9d922..7471e9ea0 100644 --- a/.github/workflows/codspeed-bench.yml +++ b/.github/workflows/codspeed-bench.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] + os: [ubuntu-22] fortran: [gfortran] build: [make] pyver: ["3.12"] @@ -36,7 +36,7 @@ jobs: run: | if [ "$RUNNER_OS" == "Linux" ]; then sudo apt-get update - sudo apt-get install -y gfortran cmake ccache libtinfo6 + sudo apt-get install -y gfortran cmake ccache libtinfo5 else echo "::error::$RUNNER_OS not supported" exit 1 @@ -147,7 +147,7 @@ jobs: OPENBLAS_NUM_THREADS=1 pytest benchmarks/bench_blas.py -k 'gesdd' - name: Run benchmarks - uses: CodSpeedHQ/action@v2 + uses: CodSpeedHQ/action@v3 with: token: ${{ secrets.CODSPEED_TOKEN }} run: |