From d7ea04c41a97f2626a879e934484efc9a19af215 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 30 Sep 2024 13:00:44 -0700 Subject: [PATCH 1/2] ci/gha: bump ubuntu to 24.04 for codespell job While at it, pin codespell to the latest version (so that CI won't fail spontaneously after a new codespell release is made). Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index cafca5458..7206f1d1e 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -15,12 +15,12 @@ env: jobs: codespell: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: install deps # Version of codespell bundled with Ubuntu is way old, so use pip. - run: pip install codespell + run: pip install --break-system-packages codespell==v2.3.0 - name: run codespell run: codespell --dictionary=- lint: From 3abf5a7c83e0ed93001927598f02a26b6a96d193 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 30 Sep 2024 13:01:49 -0700 Subject: [PATCH 2/2] ci/gha: bump ubuntu to 24.04 for lint job Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 7206f1d1e..7fa174655 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -24,7 +24,7 @@ jobs: - name: run codespell run: codespell --dictionary=- lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: