Skip to content

Commit 699c054

Browse files
authored
fix cve 2024-34156 (#777)
1 parent ee53ec4 commit 699c054

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

.github/workflows/bundle-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
username: ${{ secrets.DOCKER_USER }}
4343
password: ${{ secrets.DOCKER_PASSWORD }}
4444

45-
- name: Set up GO 1.22.5
45+
- name: Set up GO 1.22.7
4646
uses: actions/setup-go@v1
4747
with:
48-
go-version: 1.22.5
48+
go-version: 1.22.7
4949
id: go
5050

5151
- name: InstallKubebuilder
@@ -166,10 +166,10 @@ jobs:
166166
username: ${{ secrets.DOCKER_USER }}
167167
password: ${{ secrets.DOCKER_PASSWORD }}
168168

169-
- name: Set up GO 1.22.5
169+
- name: Set up GO 1.22.7
170170
uses: actions/setup-go@v1
171171
with:
172-
go-version: 1.22.5
172+
go-version: 1.22.7
173173
id: go
174174

175175
- name: InstallKubebuilder

.github/workflows/olm-verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
- name: checkout
2828
uses: actions/checkout@v2
2929

30-
- name: Set up GO 1.22.5
30+
- name: Set up GO 1.22.7
3131
uses: actions/setup-go@v1
3232
with:
33-
go-version: 1.22.5
33+
go-version: 1.22.7
3434
id: go
3535

3636
- name: InstallKubebuilder

.github/workflows/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
go-version: [1.21.9, 1.22.5]
21+
go-version: [1.21.9, 1.22.7]
2222
steps:
2323
- name: clean disk
2424
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
username: ${{ secrets.DOCKER_USER }}
3131
password: ${{ secrets.DOCKER_PASSWORD }}
3232

33-
- name: Set up GO 1.22.5
33+
- name: Set up GO 1.22.7
3434
uses: actions/setup-go@v1
3535
with:
36-
go-version: 1.22.5
36+
go-version: 1.22.7
3737
id: go
3838

3939
- name: InstallKubebuilder

.github/workflows/test-helm-charts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ jobs:
7676
run: hack/kind-cluster-build.sh --name chart-testing -c 1 -v 10 --k8sVersion v1.23.17
7777
if: steps.list-changed.outputs.changed == 'true'
7878

79-
- name: Set up GO 1.22.5
79+
- name: Set up GO 1.22.7
8080
if: steps.list-changed.outputs.changed == 'true'
8181
uses: actions/setup-go@v1
8282
with:
83-
go-version: 1.22.5
83+
go-version: 1.22.7
8484
id: go
8585

8686
- name: setup kubebuilder 3.6.0

.github/workflows/trivy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
repository: ${{github.event.pull_request.head.repo.full_name}}
3232
ref: ${{ github.event.pull_request.head.sha }}
3333

34-
- name: Set up GO 1.22.5
34+
- name: Set up GO 1.22.7
3535
uses: actions/setup-go@v1
3636
with:
37-
go-version: 1.22.5
37+
go-version: 1.22.7
3838
id: go
3939

4040
- name: InstallKubebuilder

.github/workflows/trivy_scheduled_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
repository: ${{github.event.pull_request.head.repo.full_name}}
4343
ref: ${{ github.event.pull_request.head.sha }}
4444

45-
- name: Set up GO 1.22.5
45+
- name: Set up GO 1.22.7
4646
uses: actions/setup-go@v1
4747
with:
48-
go-version: 1.22.5
48+
go-version: 1.22.7
4949
id: go
5050

5151
- name: InstallKubebuilder

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.22.5-bullseye as builder
2+
FROM golang:1.22.7-bullseye as builder
33

44
WORKDIR /workspace/api
55
COPY api/ .

redhat.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.22.5-bullseye as builder
2+
FROM golang:1.22.7-bullseye as builder
33

44
WORKDIR /workspace/api
55
COPY api/ .

0 commit comments

Comments
 (0)