From 81d1654703f81b217ce2a59b3b46b7207c9278ef Mon Sep 17 00:00:00 2001 From: Manuel Kieweg Date: Thu, 6 Jul 2023 13:43:28 +0100 Subject: [PATCH] bump go version --- .github/workflows/ci.yaml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 660e936..be3312c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ env: # Path to where test results will be saved. TEST_RESULTS: /tmp/test-results # Default minimum version of Go to support. - DEFAULT_GO_VERSION: 1.20 + DEFAULT_GO_VERSION: 1.19 jobs: lint: runs-on: ubuntu-latest @@ -95,7 +95,7 @@ jobs: cp coverage.txt $TEST_RESULTS cp coverage.html $TEST_RESULTS - name: Upload coverage report - uses: codecov/codecov-action@v3.1.1 + uses: codecov/codecov-action@v3.1.4 with: file: ./coverage.txt fail_ci_if_error: true diff --git a/go.mod b/go.mod index 974213c..e01a4f0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/XSAM/otelsql -go 1.20 +go 1.19 require ( github.com/stretchr/testify v1.8.3