File tree 9 files changed +14
-14
lines changed
test/integration/test_app
9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ inputs:
19
19
runs :
20
20
using : " composite"
21
21
steps :
22
- - name : Install Go 1.17
22
+ - name : Install Go 1.20
23
23
uses : actions/setup-go@v3
24
24
with :
25
- go-version : ' 1.17 .*'
25
+ go-version : ' 1.20 .*'
26
26
id : go
27
27
28
28
- name : Setup Test Tools
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
12
12
name : build
13
13
runs-on : ubuntu-22.04
14
14
steps :
15
- - name : Set up Go 1.17
15
+ - name : Set up Go 1.20
16
16
uses : actions/setup-go@v3
17
17
with :
18
- go-version : ' 1.17 .*'
18
+ go-version : ' 1.20 .*'
19
19
id : go
20
20
- name : checkout code
21
21
uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ jobs:
12
12
name : unit-test
13
13
runs-on : ubuntu-22.04
14
14
steps :
15
- - name : setup go 1.17
15
+ - name : setup go 1.20
16
16
uses : actions/setup-go@v3
17
17
with :
18
- go-version : ' 1.17 .*'
18
+ go-version : ' 1.20 .*'
19
19
id : go
20
20
- name : setup kubebuilder
21
21
run : |
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:experimental
2
2
3
3
# Build the controller binary
4
- FROM --platform=${BUILDPLATFORM} golang:1.17 as builder
4
+ FROM --platform=${BUILDPLATFORM} golang:1.20 as builder
5
5
6
6
WORKDIR /workspace
7
7
Original file line number Diff line number Diff line change 1
1
module github.com/aws/aws-app-mesh-controller-for-k8s
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
require (
6
6
github.com/aws/aws-sdk-go v1.44.79
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ RUN yum update -y && \
4
4
yum clean all && \
5
5
rm -rf /var/cache/yum
6
6
7
- RUN curl -LO https://golang.org/dl/go1.17.1 .linux-amd64.tar.gz && \
8
- tar -C /usr/local -xzvf go1.17.1 .linux-amd64.tar.gz
7
+ RUN curl -LO https://golang.org/dl/go1.20.3 .linux-amd64.tar.gz && \
8
+ tar -C /usr/local -xzvf go1.20.3 .linux-amd64.tar.gz
9
9
10
10
ENV PATH="${PATH}:/usr/local/go/bin"
11
11
ENV GOPATH="${HOME}/go"
Original file line number Diff line number Diff line change 1
1
module colorapp
2
2
3
- go 1.18
3
+ go 1.20
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ RUN yum update -y && \
4
4
yum clean all && \
5
5
rm -rf /var/cache/yum
6
6
7
- RUN curl -LO https://golang.org/dl/go1.19.1 .linux-amd64.tar.gz && \
8
- tar -C /usr/local -xzvf go1.19.1 .linux-amd64.tar.gz
7
+ RUN curl -LO https://golang.org/dl/go1.20.3 .linux-amd64.tar.gz && \
8
+ tar -C /usr/local -xzvf go1.20.3 .linux-amd64.tar.gz
9
9
10
10
ENV PATH="${PATH}:/usr/local/go/bin"
11
11
ENV GOPATH="${HOME}/go"
Original file line number Diff line number Diff line change 1
1
module feapp
2
2
3
- go 1.18
3
+ go 1.20
4
4
5
5
require (
6
6
k8s.io/apimachinery v0.25.2
You can’t perform that action at this time.
0 commit comments