Skip to content

Commit

Permalink
Merge pull request #347 from pact-foundation/ci/drop_unsupported_go_vers
Browse files Browse the repository at this point in the history
chore(ci): drop unsupported go vers
  • Loading branch information
mefellows authored Oct 2, 2023
2 parents dd2c5c1 + 9dad9f3 commit 7ab5fc4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 884 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
fail-fast: false
matrix:
go-version: [
1.17.x,
1.18.x,
1.19.x
1.19.x,
1.20.x,
1.21.x,
]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ jobs:
strategy:
matrix:
go-version: [ # https://endoflife.date/go
1.17.x, # Ended 02 Aug 2022
1.18.x, # Ended 01 Feb 2023
# 1.17.x, # Ended 02 Aug 2022
# 1.18.x, # Ended 01 Feb 2023
1.19.x,
1.20.x
1.20.x,
1.21.x
]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -55,4 +56,4 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
parallel-finished: true
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/pact-foundation/pact-go/v2

go 1.17
go 1.20

require (
github.com/golang/protobuf v1.5.3
Expand Down
Loading

0 comments on commit 7ab5fc4

Please sign in to comment.