From 950f0d660720cba261ff2c3aed67f0026af34c23 Mon Sep 17 00:00:00 2001 From: Witek Bedyk Date: Wed, 9 Aug 2023 17:45:04 +0200 Subject: [PATCH] Update workflow to use Go 1.20 --- .github/workflows/github-actions-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions-tests.yml b/.github/workflows/github-actions-tests.yml index c7e54d0..6988be1 100644 --- a/.github/workflows/github-actions-tests.yml +++ b/.github/workflows/github-actions-tests.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.17.x] + go-version: [1.20.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: @@ -15,4 +15,4 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Test - run: go test ./... -cover -race \ No newline at end of file + run: go test ./... -cover -race