File tree 17 files changed +19
-19
lines changed
examples/apps/hello-server
17 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 24
24
- name : Set up Go 1.21
25
25
uses : actions/setup-go@v3
26
26
with :
27
- go-version : ' >=1.21.1 '
27
+ go-version : ' >=1.21.3 '
28
28
- run : |
29
29
./scripts/create-licenses.sh
30
30
# Upload the licenses list so it's available if needed
Original file line number Diff line number Diff line change 34
34
- name : Set up Go
35
35
uses : actions/setup-go@v3
36
36
with :
37
- go-version : ' >=1.21.1 '
37
+ go-version : ' >=1.21.3 '
38
38
- uses : actions/checkout@v3
39
39
# Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
40
40
# If you upgrade this version confirm the changes match your expectations
Original file line number Diff line number Diff line change 48
48
- name : Set up Go
49
49
uses : actions/setup-go@v3
50
50
with :
51
- go-version : ' >=1.21.1 '
51
+ go-version : ' >=1.21.3 '
52
52
id : go
53
53
- name : Check out code into the Go module directory
54
54
uses : actions/checkout@v3
70
70
- name : Set up Go
71
71
uses : actions/setup-go@v3
72
72
with :
73
- go-version : ' >=1.21.1 '
73
+ go-version : ' >=1.21.3 '
74
74
id : go
75
75
- name : Check out code into the Go module directory
76
76
uses : actions/checkout@v3
88
88
# - name: Set up Go
89
89
# uses: actions/setup-go@v1
90
90
# with:
91
- # go-version: '>=1.21.1 '
91
+ # go-version: '>=1.21.3 '
92
92
# id: go
93
93
# - name: Check out code into the Go module directory
94
94
# uses: actions/checkout@v3
Original file line number Diff line number Diff line change 33
33
- name : Set up Go
34
34
uses : actions/setup-go@v3
35
35
with :
36
- go-version : ' >=1.21.1 '
36
+ go-version : ' >=1.21.3 '
37
37
- uses : actions/checkout@master
38
38
# Pinned to Commit to ensure action is consistent: https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
39
39
# If you upgrade this version confirm the changes match your expectations
Original file line number Diff line number Diff line change 56
56
- name : Set up Go
57
57
uses : actions/setup-go@v3
58
58
with :
59
- go-version : ' >=1.21.1 '
59
+ go-version : ' >=1.21.3 '
60
60
- name : Checkout Porch
61
61
uses : actions/checkout@v3
62
62
- name : Build kpt
Original file line number Diff line number Diff line change 32
32
- name : Set up Go
33
33
uses : actions/setup-go@v3
34
34
with :
35
- go-version : ' >=1.21.1 '
35
+ go-version : ' >=1.21.3 '
36
36
- name : Run Porch Unit Tests
37
37
uses : actions/checkout@v3
38
38
- name : Verify format / headers etc
Original file line number Diff line number Diff line change 28
28
- name : Set up Go
29
29
uses : actions/setup-go@v3
30
30
with :
31
- go-version : ' >=1.21.1 '
31
+ go-version : ' >=1.21.3 '
32
32
- name : Checkout
33
33
uses : actions/checkout@v3
34
34
with :
Original file line number Diff line number Diff line change 30
30
steps :
31
31
- uses : actions/setup-go@v3
32
32
with :
33
- go-version : ' >=1.21.1 '
33
+ go-version : ' >=1.21.3 '
34
34
- uses : actions/checkout@v3
35
35
- run : |
36
36
make build
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- GOLANG_VERSION := 1.21.1
15
+ GOLANG_VERSION := 1.21.3
16
16
GORELEASER_CONFIG = release/tag/goreleaser.yaml
17
17
GORELEASER_IMAGE := ghcr.io/goreleaser/goreleaser-cross:v$(GOLANG_VERSION )
18
18
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.21.1 -bookworm as builder
15
+ FROM golang:1.21.3 -bookworm as builder
16
16
17
17
WORKDIR /workspace/src
18
18
RUN git clone https://github.com/kubernetes/kubernetes --branch v1.23.2 --depth=1
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.21.1 -bookworm as builder
15
+ FROM golang:1.21.3 -bookworm as builder
16
16
17
17
WORKDIR /workspace
18
18
ARG ETCD_VER=v3.5.1
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- FROM golang:1.21.1 -bookworm as builder
16
+ FROM golang:1.21.3 -bookworm as builder
17
17
18
18
WORKDIR /go/src/github.com/GoogleContainerTools/kpt
19
19
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.21.1 -bookworm as builder
15
+ FROM golang:1.21.3 -bookworm as builder
16
16
17
17
WORKDIR /workspace
18
18
COPY go.mod go.sum ./
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM golang:1.21.1 -bookworm as builder
15
+ FROM golang:1.21.3 -bookworm as builder
16
16
17
17
WORKDIR /src
18
18
COPY go.mod go.sum ./
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ FROM gcr.io/kpt-fn/set-project-id:v0.2.0 as set-project-id
25
25
FROM gcr.io/kpt-fn/starlark:v0.3.0 as starlark
26
26
FROM gcr.io/kpt-fn/upsert-resource:v0.2.0 as upsert-resource
27
27
28
- FROM golang:1.21.1 -alpine3.18 as builder
28
+ FROM golang:1.21.3 -alpine3.18 as builder
29
29
WORKDIR /go/src/github.com/GoogleContainerTools/kpt
30
30
31
31
RUN go install github.com/grpc-ecosystem/
[email protected]
Original file line number Diff line number Diff line change 1
- FROM golang:1.21.1 -alpine3.18 as builder
1
+ FROM golang:1.21.3 -alpine3.18 as builder
2
2
3
3
WORKDIR /go/src/github.com/GoogleContainerTools/kpt
4
4
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
16
- FROM golang:1.21.1 -bookworm as builder
16
+ FROM golang:1.21.3 -bookworm as builder
17
17
18
18
WORKDIR /go/src/github.com/GoogleContainerTools/kpt
19
19
You can’t perform that action at this time.
0 commit comments