Skip to content

Commit

Permalink
chore(CI/CD): Bump go version to v1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
levaitamas committed Mar 16, 2024
1 parent 178aed4 commit 75c89bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Golang Environment
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.22'
- name: Lint Code
uses: golangci/golangci-lint-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
- name: Setup Golang Environment
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.22'
- name: Run Tests
run: make test
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
###########
# Build the manager binary
FROM golang:1.21-alpine as builder
FROM golang:1.22-alpine as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest

## Tool Versions
KUSTOMIZE_VERSION ?= v5.3.0
CONTROLLER_TOOLS_VERSION ?= v0.13.0
CONTROLLER_TOOLS_VERSION ?= v0.14.0

KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
.PHONY: kustomize
Expand Down

0 comments on commit 75c89bb

Please sign in to comment.