Skip to content

Commit

Permalink
chore: limit support of Go versions to 1.20 & 1.21 (#274)
Browse files Browse the repository at this point in the history
* chore: Update to Go 1.21

[#185100152](https://www.pivotaltracker.com/story/show/185100152)

* chore: change minimum supported version

Since we want to convey that this version is compatible with go 1.20 & 1.21, it makes sense to specify go 1.20 in go.mod instead of go 1.21
  • Loading branch information
fnaranjo-vmw authored Oct 10, 2023
1 parent 490cfae commit 8972c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.19', '1.20' ]
version: [ '1.20', '1.21' ]
name: Go ${{ matrix.version }}
outputs:
pr_number: ${{ github.event.number }}
Expand Down
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/pivotal-cf/brokerapi/v10

go 1.19
go 1.20

require (
code.cloudfoundry.org/lager/v3 v3.0.2
Expand Down

0 comments on commit 8972c10

Please sign in to comment.