Skip to content

Commit 1f6f7a9

Browse files
committed
chore: bump Go version to 1.26
Update Go baseline from 1.25 to 1.26 across all CI workflows and go.mod. This allows using xgo@latest (v1.9.0+) which requires Go >= 1.25.7.
1 parent f1bc1d6 commit 1f6f7a9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
GO_VERSION: 1.25
10+
GO_VERSION: 1.26
1111

1212
jobs:
1313
build-all:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'v*'
77

88
env:
9-
GO_VERSION: 1.25
9+
GO_VERSION: 1.26
1010

1111
jobs:
1212
release:

.github/workflows/snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: '0 2 * * *' # Every day at 2am
77

88
env:
9-
GO_VERSION: 1.25
9+
GO_VERSION: 1.26
1010

1111
jobs:
1212
snapshots:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ build-native:
3939

4040
.PHONY: build-native-cross-platform
4141
build-native-cross-platform:
42-
go install src.techknowlogick.com/xgo@v1.8.0
42+
go install src.techknowlogick.com/xgo@latest
4343
xgo $(COMMON_BUILD_ARGS) -out native/out/helm --targets */arm64,*/amd64 ./native
4444

4545
.PHONY: build-native-wasi

native/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/manusa/helm-java/native
22

3-
go 1.25.0
3+
go 1.26.0
44

55
require (
66
github.com/Masterminds/semver/v3 v3.4.0

0 commit comments

Comments
 (0)