Skip to content

Commit 0460f2e

Browse files
committed
Update golang version to 1.24
Update golang to version 1.24 since required with latest tekton/k8 Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
1 parent fcde14b commit 0460f2e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.tekton/doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
value: $(workspaces.source.path)
5959

6060
- name: hugo-gen
61-
image: golang:1.23
61+
image: golang:1.24
6262
workingDir: $(workspaces.source.path)
6363
env:
6464
- name: UPLOADER_PUBLIC_URL

.tekton/generate-coverage-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ spec:
5757
- name: workingdir
5858
value: $(workspaces.source.path)
5959
- name: unittest
60-
image: golang:1.23
60+
image: golang:1.24
6161
workingDir: $(workspaces.source.path)
6262
env:
6363
- name: GOCACHE
@@ -70,7 +70,7 @@ spec:
7070
GO_TEST_FLAGS="-v -coverprofile=coverage.txt -covermode=atomic"
7171
- name: codecov
7272
# Has everything we need in there and we already fetched it!
73-
image: golang:1.23
73+
image: golang:1.24
7474
workingDir: $(workspaces.source.path)
7575
env:
7676
- name: CODECOV_TOKEN
@@ -88,7 +88,7 @@ spec:
8888
chmod +x ./codecov
8989
./codecov -C {{revision}} -v
9090
- name: upload-release
91-
image: golang:1.23
91+
image: golang:1.24
9292
workingDir: $(workspaces.source.path)
9393
env:
9494
- name: HUB_TOKEN

.tekton/go.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
- name: unittest
5757
# we get bumped out when usingh the official image with docker.io
5858
# ratelimit so workaround this.
59-
image: golang:1.23
59+
image: golang:1.24
6060
env:
6161
- name: GOCACHE
6262
value: $(workspaces.source.path)/go-build-cache/cache
@@ -71,7 +71,7 @@ spec:
7171
make test
7272
7373
- name: coverage
74-
image: golang:1.23
74+
image: golang:1.24
7575
env:
7676
- name: CODECOV_TOKEN
7777
valueFrom:

0 commit comments

Comments
 (0)