File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ WORKDIR /build
6
6
7
7
# copy just enough of the git repo to parse HEAD, used to record version in OLM binaries
8
8
RUN dnf update -y && dnf install -y bash make git mercurial jq wget && dnf upgrade -y
9
- RUN curl -sSL https://go.dev/dl/go1.19 .linux-amd64.tar.gz | tar -xzf - -C /usr/local
9
+ RUN curl -sSL https://go.dev/dl/go1.20 .linux-amd64.tar.gz | tar -xzf - -C /usr/local
10
10
ENV PATH=/usr/local/go/bin:$PATH
11
11
COPY .git/HEAD .git/HEAD
12
12
COPY .git/refs/heads/. .git/refs/heads
Original file line number Diff line number Diff line change 11
11
SHELL := /bin/bash
12
12
ORG := github.com/operator-framework
13
13
PKG := $(ORG ) /operator-lifecycle-manager
14
- MOD_FLAGS := $( shell (go version | grep -q -E "1\.1[1-9]") && echo - mod=vendor && echo -buildvcs=false)
14
+ MOD_FLAGS := - mod=vendor -buildvcs=false
15
15
BUILD_TAGS := "json1"
16
16
CMDS := $(shell go list $(MOD_FLAGS ) ./cmd/...)
17
17
TCMDS := $(shell go list $(MOD_FLAGS ) ./test/e2e/...)
Original file line number Diff line number Diff line change 1
1
module github.com/operator-framework/operator-lifecycle-manager
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/blang/semver/v4 v4.0.0
You can’t perform that action at this time.
0 commit comments