From 236f981968670eb8e1d3f39c2f20550b7ac5143e Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Tue, 15 Mar 2022 21:57:05 +0100 Subject: [PATCH 1/3] Update codecov.yml Replaced go 1.14 with 1.18 --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index df9eae7..0ad4fac 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - go: [1.14, 1.15, 1.16, 1.17] + go: [1.15, 1.16, 1.17 1.18] steps: - name: Checkout Code uses: actions/checkout@master From ece721ffc1632a42d3d8c4e24556d8185845778f Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Tue, 15 Mar 2022 21:57:50 +0100 Subject: [PATCH 2/3] Update codecov.yml Typo in 1.18 change --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 0ad4fac..e7a834d 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - go: [1.15, 1.16, 1.17 1.18] + go: [1.15, 1.16, 1.17, 1.18] steps: - name: Checkout Code uses: actions/checkout@master From 57bb99b43de72740ff281c2c05cce0e73646ce21 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Tue, 15 Mar 2022 21:58:57 +0100 Subject: [PATCH 3/3] Update codecov.yml Set 1.18 as if criteria --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index e7a834d..4ed55ba 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -32,7 +32,7 @@ jobs: go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./... - name: Upload coverage to Codecov - if: success() && matrix.go == 1.17 && matrix.os == 'ubuntu-latest' + if: success() && matrix.go == 1.18 && matrix.os == 'ubuntu-latest' uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos