From eff2a2a4b69a9e806a97f27d4d872c91c29e7c11 Mon Sep 17 00:00:00 2001 From: Jacek Olszak Date: Sat, 20 Dec 2025 11:57:22 +0100 Subject: [PATCH] chore: use ubuntu-22.04 for build jobs Because ubuntu-20.04 is now deprecated in Github --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a22e4b1..8fd6d14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: go: [ "1.19", "1.20" ] @@ -28,7 +28,7 @@ jobs: run: make test coverage: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 @@ -44,7 +44,7 @@ jobs: run: bash <(curl -s https://codecov.io/bash) lint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2