Skip to content

Commit 9e022be

Browse files
committed
Bump Go to 1.25.8
Signed-off-by: Karol Szwaj <karol.szwaj@gmail.com> On-behalf-of: @SAP karol.szwaj@sap.com
1 parent 79e3d07 commit 9e022be

13 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-go@v5
3232
with:
33-
go-version: v1.25.4
33+
go-version: v1.25.8
3434
- uses: actions/setup-node@v4
3535
with:
3636
node-version: '20'
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: actions/setup-go@v5
4747
with:
48-
go-version: v1.25.4
48+
go-version: v1.25.8
4949
- uses: actions/setup-node@v4
5050
with:
5151
node-version: '20'
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v4
6161
- uses: actions/setup-go@v5
6262
with:
63-
go-version: v1.25.4
63+
go-version: v1.25.8
6464
- run: make test
6565

6666
lint:
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/checkout@v4
7171
- uses: actions/setup-go@v5
7272
with:
73-
go-version: v1.25.4
73+
go-version: v1.25.8
7474
- run: make lint
7575

7676
verify:
@@ -80,5 +80,5 @@ jobs:
8080
- uses: actions/checkout@v4
8181
- uses: actions/setup-go@v5
8282
with:
83-
go-version: v1.25.4
83+
go-version: v1.25.8
8484
- run: make verify

.github/workflows/docs-gen-and-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- uses: actions/setup-go@v5
3636
with:
37-
go-version: v1.25.4
37+
go-version: v1.25.8
3838
cache: true
3939

4040
- uses: actions/setup-python@v5

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: v1.25.4
25+
go-version: v1.25.8
2626
- name: Delete non-semver tags
2727
run: 'git tag -d $(git tag -l | grep -v "^v")'
2828
- name: Set LDFLAGS
@@ -51,4 +51,4 @@ jobs:
5151
if: ${{ always() }}
5252
with:
5353
name: binaries
54-
path: dist/*.tar.gz
54+
path: dist/*.tar.gz

.github/workflows/image.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: v1.25.4
22+
go-version: v1.25.8
2323
check-latest: true
2424

2525
# We need this to remove local tags that are not semver so goreleaser doesn't get confused.
@@ -33,7 +33,7 @@ jobs:
3333
# If you notice signing errors, you may need to update the cosign version.
3434
- uses: sigstore/cosign-installer@v3.7.0
3535

36-
36+
3737
- name: Install Helm
3838
uses: azure/setup-helm@v3
3939
with:
@@ -43,7 +43,7 @@ jobs:
4343
run: echo LDFLAGS="$(make ldflags)" | tee -a >> $GITHUB_ENV
4444

4545
# Login to GitHub Container Registry (used by both ko and Docker)
46-
- name: Login to GitHub Container Registry
46+
- name: Login to GitHub Container Registry
4747
uses: docker/login-action@v3
4848
with:
4949
registry: ghcr.io
@@ -134,7 +134,7 @@ jobs:
134134
run: |
135135
# Login to GitHub Container Registry for Helm
136136
echo "${{ github.token }}" | helm registry login ghcr.io --username ${{ github.actor }} --password-stdin
137-
137+
138138
# Set chart version - use tag name if available, otherwise use semver format
139139
if [[ "${{ github.ref_type }}" == "tag" ]]; then
140140
CHART_VERSION="${{ github.ref_name }}"
@@ -143,23 +143,23 @@ jobs:
143143
else
144144
CHART_VERSION="0.0.0-${{ github.sha }}"
145145
fi
146-
146+
147147
# Package and push each chart in deploy/charts/
148148
for chart_dir in deploy/charts/*/; do
149149
if [ -f "${chart_dir}Chart.yaml" ]; then
150150
chart_name=$(basename "$chart_dir")
151151
echo "Processing chart: $chart_name"
152-
152+
153153
# Update chart version and appVersion in Chart.yaml
154154
sed -i "s/^version:.*/version: ${CHART_VERSION}/" "${chart_dir}Chart.yaml"
155155
sed -i "s/^appVersion:.*/appVersion: ${CHART_VERSION}/" "${chart_dir}Chart.yaml"
156-
156+
157157
# Package the chart
158158
helm package "$chart_dir" --version "${CHART_VERSION}"
159-
159+
160160
# Push to GitHub Container Registry
161161
helm push "${chart_name}-${CHART_VERSION}.tgz" "oci://ghcr.io/${{ github.repository_owner }}/charts"
162-
162+
163163
echo "Helm chart pushed to oci://ghcr.io/${{ github.repository_owner }}/charts/${chart_name}:${CHART_VERSION}"
164164
fi
165165
done

.ko.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
baseImageOverrides:
2-
github.com/google/ko: golang:1.25.4
2+
github.com/google/ko: golang:1.25.8
33

44
builds:
55
- id: konnector

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FROM node:20.18.0-alpine3.20 AS ui-build-env
1717
WORKDIR /app
1818

1919
# Install build dependencies needed for native modules
20-
RUN apk add --no-cache python3 make g++
20+
RUN apk add --no-cache python3 make g++
2121

2222
# Copy package files
2323
COPY ./web/package*.json ./
@@ -39,7 +39,7 @@ ENV VITE_BUILD_TARGET=docker
3939
RUN npm run build
4040

4141
# Build Go binary with embedded UI assets
42-
FROM golang:1.25.4 AS go-build-env
42+
FROM golang:1.25.8 AS go-build-env
4343
WORKDIR /app
4444

4545
# Accept build arguments for multi-arch support
@@ -75,4 +75,4 @@ COPY --from=ui-build-env /app/dist /www
7575

7676

7777

78-
ENTRYPOINT ["/bin/backend"]
78+
ENTRYPOINT ["/bin/backend"]

Dockerfile.konnector

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.4 AS builder
15+
FROM golang:1.25.8 AS builder
1616
WORKDIR /app
1717

1818
# Accept build arguments for multi-arch support
@@ -32,4 +32,4 @@ RUN apk --update add ca-certificates
3232

3333
COPY --from=builder /app/bin/konnector /bin/konnector
3434

35-
ENTRYPOINT ["/bin/konnector"]
35+
ENTRYPOINT ["/bin/konnector"]

cli/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kube-bind/kube-bind/cli
22

3-
go 1.24.0
3+
go 1.25.8
44

55
replace (
66
github.com/kube-bind/kube-bind => ../

contrib/kcp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kube-bind/kube-bind/contrib/kcp
22

3-
go 1.24.0
3+
go 1.25.8
44

55
replace (
66
github.com/kube-bind/kube-bind => ../../

docs/generators/cli-doc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kube-bind/kube-bind/docs/generators/cli-doc
22

3-
go 1.24.0
3+
go 1.25.8
44

55
replace (
66
github.com/kube-bind/kube-bind => ../../../

0 commit comments

Comments
 (0)