Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Go v1.21 and v1.22 to GitHub Actions CI matrix #1245

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
go: [1.19.x, 1.20.x]
go: [1.21.x, 1.22.x]

steps:
- name: checkout source code
Expand All @@ -32,7 +32,7 @@ jobs:
- name: run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.2
version: v1.56.1
args: --verbose

- name: run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
go: [1.19.x, 1.20.x]
go: [1.21.x, 1.22.x]

steps:
- name: checkout source code
Expand All @@ -32,7 +32,7 @@ jobs:
- name: run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.51.2
version: v1.56.1
args: --verbose

- name: run tests
Expand Down