From 6455e038634e6694d97dbf3b4cce9efedc86855a Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Tue, 5 Mar 2024 07:52:32 -0800 Subject: [PATCH] Use Go 1.22 in CI Signed-off-by: Tamal Saha --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce0cf7b..a710227 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,20 +6,20 @@ on: pull_request: branches: [master] workflow_dispatch: + concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true -jobs: +jobs: build: name: Build - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: '1.20' + go-version: '1.22' id: go - name: Check out code into the Go module directory