Skip to content

Commit

Permalink
Updating the versions of Go tested in CI
Browse files Browse the repository at this point in the history
Go 1.19.x is now dead. Go 1.20.x and 1.21.x are it.
See https://golang.org/doc/devel/release#policy
  • Loading branch information
Rican7 committed Aug 13, 2023
1 parent d032f60 commit 400983f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.19.x', '1.20.x']
go: ['1.20.x', '1.21.x']

steps:
- name: Checkout code
Expand All @@ -42,7 +42,7 @@ jobs:
run: make test-with-coverage-profile

- name: Send code coverage to coveralls
if: ${{ matrix.go == '1.20.x' }}
if: ${{ matrix.go == '1.21.x' }}
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down

0 comments on commit 400983f

Please sign in to comment.