From 4c03881183aab8e17d6e435a4a87c37f1e9f5c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Doma=C5=84ski?= Date: Sun, 20 Aug 2023 15:10:34 +0200 Subject: [PATCH] CI/CD: remove EOL Go 1.18, add go 1.21 --- .github/workflows/go.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b04580f..d0570c1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: ['1.18', '1.19', '1.20'] + go: ['1.19', '1.20', '1.21'] steps: - name: Set up Go ${{ matrix.go }} @@ -42,7 +42,7 @@ jobs: run: sudo go test -v --tags=integration -coverprofile=coverage_integration.txt -covermode=atomic . - name: Upload coverage to Codecov - if: matrix.go == '1.20' + if: matrix.go == '1.21' uses: codecov/codecov-action@v2 with: files: ./coverage_unit.txt,coverage_integration.txt diff --git a/go.mod b/go.mod index 4c35d30..400139c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/kdomanski/iso9660 -go 1.18 +go 1.19 require github.com/stretchr/testify v1.8.4