Skip to content

Commit

Permalink
Merge pull request #824 from yiannistri/bump-go-toolchain-release-v2.8
Browse files Browse the repository at this point in the history
[v2.8] Bump go toolchain
  • Loading branch information
yiannistri committed Sep 11, 2024
2 parents d260a49 + e611c1c commit 943e255
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/scan.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Scan
on:
pull_request:
branches:
- release-v2.8
push:
branches:
- release-v2.8
Expand All @@ -14,6 +16,13 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: Build operator
run: make operator
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
Expand All @@ -24,7 +33,7 @@ jobs:
tags: ghcr.io/rancher/eks-operator:${{ github.sha }}
load: true
push: false
file: test/e2e/Dockerfile.e2e
file: package/Dockerfile
build-args: |
TAG=${{ github.sha }}
REPO=ghcr.io/rancher/eks-operator
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ MOCKGEN_VER := v1.6.0
MOCKGEN_BIN := mockgen
MOCKGEN := $(BIN_DIR)/$(MOCKGEN_BIN)-$(MOCKGEN_VER)

GINKGO_VER := v2.19.0
GINKGO_VER := v2.20.2
GINKGO_BIN := ginkgo
GINKGO := $(BIN_DIR)/$(GINKGO_BIN)-$(GINKGO_VER)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/rancher/eks-operator

go 1.22.0

toolchain go1.22.5
toolchain go1.22.7

replace k8s.io/client-go => k8s.io/client-go v0.28.6

Expand Down

0 comments on commit 943e255

Please sign in to comment.