From d70b79e8de2631779e15c7af2bc64c3dcf2f1eae Mon Sep 17 00:00:00 2001 From: "Tomi P. Hakala" Date: Thu, 16 Jan 2025 08:05:51 +0200 Subject: [PATCH] chore: update golangci-lint workflow to use Ubuntu 22.04 - Changed the runner environment from Ubuntu 20.04 to Ubuntu 22.04 for improved compatibility and performance. - This update aligns with recent enhancements in the golangci-lint workflow, ensuring better support for the latest features and optimizations. --- .github/workflows/golangci-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/golangci-test.yml b/.github/workflows/golangci-test.yml index e4e383a4..a07a8047 100644 --- a/.github/workflows/golangci-test.yml +++ b/.github/workflows/golangci-test.yml @@ -11,7 +11,7 @@ jobs: unit-tests: needs: golangci - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5