From 2809a52fd8a7a5b259709fa09553422cae2cf30a Mon Sep 17 00:00:00 2001 From: Wei Ji <23487320+weiji14@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:09:27 +1300 Subject: [PATCH 1/2] ci: apt install jq for bench workflow Try to fix `jq: command not found` when running CodSpeedHQ/action@v4.11.0 --- .github/workflows/bench.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 66831cbe..7017477a 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -27,7 +27,7 @@ jobs: - name: Install dev dependencies and setup git run: | apt update - apt install -y build-essential cmake git libclang-dev pkg-config + apt install -y build-essential cmake git jq libclang-dev pkg-config git config --global --add safe.directory $GITHUB_WORKSPACE - name: Checkout repository From 4816607b50f1d67a2256f027a93158fdd194abff Mon Sep 17 00:00:00 2001 From: Wei Ji <23487320+weiji14@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:16:49 +1300 Subject: [PATCH 2/2] Bump to gdal 3.12.2 --- .github/workflows/bench.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 7017477a..262cb86e 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -17,7 +17,7 @@ jobs: rust-bench: runs-on: ubuntu-24.04 container: - image: ghcr.io/osgeo/gdal:ubuntu-small-3.11.5 + image: ghcr.io/osgeo/gdal:ubuntu-small-3.12.2 options: --privileged permissions: contents: read # required for actions/checkout