Skip to content

Commit 92cf79c

Browse files
authored
move to go1.23 (#780)
1 parent fa0540a commit 92cf79c

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
go: ['1.22']
13+
go: ['1.23']
1414

1515
steps:
1616
- name: install make
@@ -28,7 +28,7 @@ jobs:
2828
- name: check clean vendors
2929
run: go mod vendor
3030
- name: upload coverage to codecov.io
31-
if: ${{ matrix.go == '1.22' }}
31+
if: ${{ matrix.go == '1.23' }}
3232
uses: codecov/codecov-action@v4
3333
with:
3434
files: ./cover.out

.github/workflows/pull_request_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go: ['1.22']
15+
go: ['1.23']
1616

1717
steps:
1818
- name: install make

.github/workflows/push_image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
go: ['1.22']
18+
go: ['1.23']
1919
steps:
2020
- name: install make
2121
run: sudo apt-get install make
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
go: ['1.22']
49+
go: ['1.23']
5050
steps:
5151
- name: install make
5252
run: sudo apt-get install make

.github/workflows/push_image_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
go: ['1.22']
19+
go: ['1.23']
2020
steps:
2121
- name: install make
2222
run: sudo apt-get install make

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
go: ['1.22']
17+
go: ['1.23']
1818
steps:
1919
- name: checkout
2020
uses: actions/checkout@v3

contrib/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG TARGETARCH
2-
FROM docker.io/library/golang:1.22 as builder
2+
FROM docker.io/library/golang:1.23 as builder
33

44
ARG TARGETARCH=amd64
55
ARG LDFLAGS

contrib/docker/Dockerfile.downstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG TARGETARCH
22
ARG COMMIT
3-
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22.5-202407301806.g4c8b32d.el9 as builder
3+
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23 as builder
44

55
ARG TARGETARCH=amd64
66
ARG BUILDVERSION

0 commit comments

Comments
 (0)