Skip to content

Commit

Permalink
Fix coverage test; point minimal build version to Go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Chen committed Jan 2, 2025
1 parent 393f7ff commit 67d42a1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.23"
go-version: "1.22"
- name: Run go test with coverage
run: |
cd tools/eksDistroBuildToolingOpsTools/
Expand Down
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:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.23"
go-version: "1.22"
- run: go version
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
Expand Down
2 changes: 1 addition & 1 deletion eks-distro-base/iptables-wrappers/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/kubernetes-sigs/iptables-wrappers

go 1.23
go 1.22
2 changes: 1 addition & 1 deletion release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ else
GOBIN=$(shell go env GOBIN)
endif

export PATH:=/go/go1.19/bin:$(PATH)
export PATH:=/go/go1.22/bin:$(PATH)

all: build

Expand Down
2 changes: 1 addition & 1 deletion release/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/aws/eks-distro-build-tooling/release

go 1.20
go 1.22

require (
github.com/aws/aws-sdk-go v1.38.40
Expand Down
2 changes: 1 addition & 1 deletion tools/eksDistroBuildToolingOpsTools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/aws/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools

go 1.19
go 1.22

require (
github.com/aws/aws-sdk-go v1.44.331
Expand Down

0 comments on commit 67d42a1

Please sign in to comment.