File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 25
25
- name : Set up Go
26
26
uses : actions/setup-go@v1
27
27
with :
28
- go-version : 1.17 .x
28
+ go-version : 1.18 .x
29
29
- name : Release
30
30
uses : goreleaser/goreleaser-action@v2
31
31
with :
Original file line number Diff line number Diff line change 1
1
## Development
2
2
3
- The Asset Relocation Tool for Kubernetes is built with Golang 1.17 .
3
+ The Asset Relocation Tool for Kubernetes is built with Golang 1.18 .
4
4
5
5
### Running tests
6
6
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ default: build
10
10
.PHONY : deps-go-binary deps-counterfeiter deps-ginkgo deps-golangci-lint
11
11
12
12
GO_VERSION := $(shell go version)
13
- GO_VERSION_REQUIRED = go1.17
13
+ GO_VERSION_REQUIRED = go1.18
14
14
GO_VERSION_MATCHED := $(shell go version | grep $(GO_VERSION_REQUIRED ) )
15
15
16
16
deps-go-binary :
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM harbor-repo.vmware.com/dockerhub-proxy-cache/library/photon:3.0-20210716
5
5
WORKDIR /
6
6
7
7
# Install required packages
8
- RUN yum -y install build-essential coreutils gawk gcc git go-1.17 .2-1.ph3.x86_64 jq make
8
+ RUN yum -y install build-essential coreutils gawk gcc git go-1.18 .2-1.ph3.x86_64 jq make
9
9
ENV PATH="/root/go/bin:${PATH}"
10
10
11
11
# Install go packages used for building and testing
Original file line number Diff line number Diff line change 1
1
module github.com/vmware-tanzu/asset-relocation-tool-for-kubernetes
2
2
3
- go 1.17
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/avast/retry-go v3.0.0+incompatible
Original file line number Diff line number Diff line change 1
1
# Copyright 2021 VMware, Inc.
2
2
# SPDX-License-Identifier: BSD-2-Clause
3
- FROM golang:1.17 as compiled
3
+ FROM golang:1.18 as compiled
4
4
RUN cd /go && \
5
5
GO111MODULE=off go get -u filippo.io/mkcert && \
6
6
cd src/filippo.io/mkcert && \
You can’t perform that action at this time.
0 commit comments