Skip to content

Commit

Permalink
adjust supported go versions
Browse files Browse the repository at this point in the history
Signed-off-by: Fabian Martinez <[email protected]>
  • Loading branch information
famarting committed Nov 25, 2024
1 parent beea9c5 commit 36c809f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: [1.19, "1.20", "1.21", "1.22", "1.23"]
go-version: ["1.21", "1.22", "1.23"]
steps:
- uses: actions/checkout@v3

Expand All @@ -30,26 +30,3 @@ jobs:

- name: Test
run: go test -v ./...

deprecated-versions-tests:
needs: tests
name: Deprecated Go version Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go-version: [ 1.17, 1.18 ]

steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
golangci:
strategy:
matrix:
go: [ '1.20' ]
go: [ '1.21' ]
os: [ macos-latest, windows-latest ]
name: lint
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

`aws-msk-iam-sasl-signer-go` is the AWS MSK IAM SASL Signer for Go programming language.

The AWS MSK IAM SASL Signer for Go requires a minimum version of `Go 1.17`.
The AWS MSK IAM SASL Signer for Go requires a minimum version of `Go 1.21`.

Check out the [release notes](https://github.com/aws/aws-msk-iam-sasl-signer-go/blob/main/CHANGELOG.md) for information about the latest bug
fixes, updates, and features added to the library.
Expand Down

0 comments on commit 36c809f

Please sign in to comment.