Skip to content

Commit 67d42a1

Browse files
author
Nate Chen
committed
Fix coverage test; point minimal build version to Go 1.22
1 parent 393f7ff commit 67d42a1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/go-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-go@v3
1212
with:
13-
go-version: "1.23"
13+
go-version: "1.22"
1414
- name: Run go test with coverage
1515
run: |
1616
cd tools/eksDistroBuildToolingOpsTools/

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-go@v4
1616
with:
17-
go-version: "1.23"
17+
go-version: "1.22"
1818
- run: go version
1919
- name: golangci-lint
2020
uses: golangci/golangci-lint-action@v3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/kubernetes-sigs/iptables-wrappers
22

3-
go 1.23
3+
go 1.22

release/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else
88
GOBIN=$(shell go env GOBIN)
99
endif
1010

11-
export PATH:=/go/go1.19/bin:$(PATH)
11+
export PATH:=/go/go1.22/bin:$(PATH)
1212

1313
all: build
1414

release/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/eks-distro-build-tooling/release
22

3-
go 1.20
3+
go 1.22
44

55
require (
66
github.com/aws/aws-sdk-go v1.38.40

tools/eksDistroBuildToolingOpsTools/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/eks-distro-build-tooling/tools/eksDistroBuildToolingOpsTools
22

3-
go 1.19
3+
go 1.22
44

55
require (
66
github.com/aws/aws-sdk-go v1.44.331

0 commit comments

Comments
 (0)