Skip to content

Commit

Permalink
feat: bump Golang versions (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfonseca committed Mar 6, 2024
1 parent 622cf84 commit 9765e0a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
strategy:
matrix:
go:
- "1.22"
- "1.21"
- "1.20"
- "1.19"
- "1.18"

steps:
- name: Check out code into the Go module directory
Expand All @@ -34,6 +34,6 @@ jobs:

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: matrix.go == '1.20'
if: matrix.go == '1.22'
with:
files: ./coverage.txt
2 changes: 1 addition & 1 deletion .github/workflows/update_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.20.0'
go-version: '^1.22.0'

- name: Update Schema
run: |
Expand Down
2 changes: 1 addition & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
{
languages.go = {
enable = true;
package = pkgs.go_1_21;
package = pkgs.go_1_22;
};
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ require (
golang.org/x/tools v0.16.1 // indirect
)

go 1.18
go 1.20

0 comments on commit 9765e0a

Please sign in to comment.