Skip to content

Commit

Permalink
CI/CD: remove EOL Go 1.18, add go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomanski committed Aug 20, 2023
1 parent 93841c2 commit 4c03881
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kdomanski/iso9660

go 1.18
go 1.19

require github.com/stretchr/testify v1.8.4

Expand Down

0 comments on commit 4c03881

Please sign in to comment.