Skip to content

Commit 572bd00

Browse files
committed
chore: bump Go to 1.26.2
1 parent 5c354b9 commit 572bd00

28 files changed

Lines changed: 447 additions & 454 deletions

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: steadybit/extension-kit/.github/workflows/reusable-extension-ci.yml@main # NOSONAR githubactions:S7637 - our own action
5757
needs: [e2e-tests]
5858
with:
59-
go_version: '^1.25.7'
59+
go_version: '^1.26.2'
6060
build_linux_packages: true
6161
force_push_docker_image: false
6262
VERSION_BUMPER_APPID: ${{ vars.GH_APP_STEADYBIT_APP_ID }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## (next)
4+
5+
- Bump Go to 1.26.2
6+
37
## v1.5.12
48

59
- Support if-none-match for the extension list endpoint

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func parseArgs(cfg *Specification) error {
5151

5252
cfg.DisallowHostNetwork = cfg.DisallowHostNetwork || *disallowHostNetwork
5353

54-
for _, s := range strings.Split(strings.TrimSpace(*disallowK8sNamespaces), ",") {
54+
for s := range strings.SplitSeq(strings.TrimSpace(*disallowK8sNamespaces), ",") {
5555
if s == "" {
5656
continue
5757
}

0 commit comments

Comments
 (0)