Skip to content

Commit 2d3d6d7

Browse files
authored
Remove older Go versions
Go's LTS is only for latest 2 versions - https://endoflife.date/go Dependabot's PR is also failing tests using old versions: #501
2 parents 4815d68 + 265eebc commit 2d3d6d7

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- windows-latest
2020
- macos-latest
2121
go:
22-
- '1.19'
23-
- '1.20'
22+
- '1.23'
23+
- '1.24'
2424
- '1'
2525
steps:
2626
- name: Set up Go ${{ matrix.go }}
@@ -45,7 +45,7 @@ jobs:
4545
os:
4646
- ubuntu-latest
4747
go:
48-
- '1.20'
48+
- '1.24'
4949
steps:
5050
- name: Set up Go ${{ matrix.go }}
5151
uses: actions/setup-go@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you want additional features when tracing your Go applications, please [open
1313

1414
## Installing into GOPATH
1515

16-
The AWS X-Ray SDK for Go is compatible with Go 1.19 and above.
16+
The AWS X-Ray SDK for Go is compatible with Go 1.23 and above.
1717

1818
Install the SDK using the following command (The SDK's non-testing dependencies will be installed):
1919
Use `go get` to retrieve the SDK to add it to your `GOPATH` workspace:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/aws-xray-sdk-go/v2
22

3-
go 1.19
3+
go 1.24
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.1

integration-tests/distributioncheck/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ require (
2424
gopkg.in/yaml.v3 v3.0.1 // indirect
2525
)
2626

27-
go 1.19
27+
go 1.24

sample-apps/http-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21
1+
FROM golang:1.24
22

33
WORKDIR /app
44
COPY . .

sample-apps/http-server/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ require (
3838
google.golang.org/protobuf v1.33.0 // indirect
3939
)
4040

41-
go 1.21
41+
go 1.24
4242
toolchain go1.24.1

0 commit comments

Comments
 (0)