Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go to v1.21 #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
SHELL: /bin/bash

steps:
- name: Set up Go 1.20
- name: Set up Go 1.21
uses: actions/setup-go@v3
with:
go-version: 1.20.11
go-version: 1.21.6

- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ linters-settings:
statements: 40
unused:
check-exported: true
go: "1.20"
go: "1.21"
stylecheck:
dot-import-whitelist:
- github.com/onsi/gomega
Expand Down
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM registry.access.redhat.com/ubi8/ubi:latest

ARG GO_VER=go1.20.11
ARG GO_VER=go1.21.6
ARG [email protected]

LABEL description="eco-gosystem development image"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The [eco-gosystem](https://github.com/openshift-kni/eco-gosystem) project provid
The project is based on golang+[ginkgo](https://onsi.github.io/ginkgo) framework and it makes use of packages from [eco-goinfra](https://github.com/openshift-kni/eco-goinfra)

### Project requirements
* golang v1.20.x
* golang v1.21.x
* ginkgo v2.x

## eco-gosystem
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/openshift-kni/eco-gosystem

go 1.20
go 1.21.6

require (
github.com/golang/glog v1.1.2
Expand Down
Loading