Skip to content

Commit

Permalink
Update golang version to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenkumar committed May 17, 2022
1 parent a706553 commit a0f05a8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os:
- macOS-11
go:
- 1.16
- 1.17
steps:
# Enable tmate debugging of manually-triggered workflows if the input option was provided
- name: Setup tmate session
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-check-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- windows-2019
- windows-2022
go:
- 1.16
- 1.17
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- ubuntu-latest
- ubuntu-18.04
go:
- 1.16
- 1.17
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os:
- ubuntu-latest
go:
- 1.16
- 1.17
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- windows-2019
- windows-2022
go:
- 1.16
- 1.17
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion centos_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# bundle location
BUNDLE_VERSION=4.10.6
BUNDLE=crc_libvirt_$BUNDLE_VERSION_amd64.crcbundle
GO_VERSION=1.16.10
GO_VERSION=1.17.10

# Output command before executing
set -x
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/code-ready/crc

go 1.16
go 1.17

require (
github.com/AlecAivazis/survey/v2 v2.3.4
Expand Down
2 changes: 1 addition & 1 deletion images/build-e2e/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.7 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.17.7 as builder

USER root
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion images/build-integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/go-toolset:1.16.7 as builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.17.7 as builder

USER root
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion images/openshift-ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile is used by openshift CI
# It builds an image containing crc and nss-wrapper for remote deployments, as well as the google cloud-sdk for nested GCE environments.

FROM registry.ci.openshift.org/openshift/release:golang-1.16 AS builder
FROM registry.ci.openshift.org/openshift/release:golang-1.17 AS builder
WORKDIR /go/src/github.com/code-ready/crc
COPY . .
RUN make release
Expand Down

0 comments on commit a0f05a8

Please sign in to comment.