From 56dfb2b7a88e0dad40270d3dd05bacb813984f03 Mon Sep 17 00:00:00 2001
From: Georg Reinke <guelfey@gmail.com>
Date: Sat, 21 Sep 2024 19:17:23 +0200
Subject: [PATCH] chore(ci): bump Ubuntu and Go versions

---
 .github/workflows/test.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 0799a47..979e3c6 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,22 +12,22 @@ permissions:
 jobs:
 
   lint:
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-24.04
     steps:
       - uses: actions/checkout@v3
       - uses: actions/setup-go@v3
         with:
-          go-version: 1.19
+          go-version: 1.23
       - uses: golangci/golangci-lint-action@v3
         with:
           version: v1.50
 
   test:
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-24.04
     strategy:
       fail-fast: false
       matrix:
-        go-version: ['1.16', '1.17', '1.18', '1.19', '1.20']
+        go-version: ['1.22', '1.23']
 
     steps:
 
@@ -49,7 +49,7 @@ jobs:
       run: go test -race -v ./...
 
   codespell:
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-24.04
     steps:
     - uses: actions/checkout@v3
     - uses: codespell-project/actions-codespell@master