Skip to content

Commit c059723

Browse files
authored
Update wrokflows (Go 1.20, k8s 1.26) (#19)
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent 4e9c89e commit c059723

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
name: Build
1414
runs-on: ubuntu-20.04
1515
steps:
16-
- name: Set up Go 1.19
16+
- name: Set up Go 1.20
1717
uses: actions/setup-go@v1
1818
with:
19-
go-version: 1.19
19+
go-version: '1.20'
2020
id: go
2121

2222
- name: Check out code into the Go module directory

.github/workflows/update-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
name: Build
1111
runs-on: ubuntu-20.04
1212
steps:
13-
- name: Set up Go 1.19
13+
- name: Set up Go 1.20
1414
uses: actions/setup-go@v1
1515
with:
16-
go-version: 1.19
16+
go-version: '1.20'
1717
id: go
1818

1919
- uses: actions/checkout@v1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) windows/amd64 darwin/amd64 darwin/arm64
5353
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
5454
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5555

56-
GO_VERSION ?= 1.19
56+
GO_VERSION ?= 1.20
5757
BUILD_IMAGE ?= appscode/golang-dev:$(GO_VERSION)
5858

5959
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ require (
7878
k8s.io/utils v0.0.0-20220823124924-e9cbc92d1a73 // indirect
7979
kmodules.xyz/monitoring-agent-api v0.25.0 // indirect
8080
kmodules.xyz/webhook-runtime v0.25.0 // indirect
81-
sigs.k8s.io/controller-runtime v0.13.0 // indirect
81+
sigs.k8s.io/controller-runtime v0.13.1 // indirect
8282
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
8383
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
8484
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,8 +632,8 @@ kmodules.xyz/monitoring-agent-api v0.25.0 h1:RU9RBeCqQdoS381xXy8cM1aqT+7qmtuPI3K
632632
kmodules.xyz/monitoring-agent-api v0.25.0/go.mod h1:RH5f/W9eCiW+KTblBIh8MZkjCWdtMQ8MuzCBMfgkynM=
633633
kmodules.xyz/webhook-runtime v0.25.0 h1:NKNgu0C1I8kUovQ+SVozs/q7cjq8zgpSjLfJf9CxUtk=
634634
kmodules.xyz/webhook-runtime v0.25.0/go.mod h1:gK2iIF0oCeQVVqH4L5nFjcguyhMPBhHMhiV5Fgb6EE0=
635-
sigs.k8s.io/controller-runtime v0.13.0 h1:iqa5RNciy7ADWnIc8QxCbOX5FEKVR3uxVxKHRMc2WIQ=
636-
sigs.k8s.io/controller-runtime v0.13.0/go.mod h1:Zbz+el8Yg31jubvAEyglRZGdLAjplZl+PgtYNI6WNTI=
635+
sigs.k8s.io/controller-runtime v0.13.1 h1:tUsRCSJVM1QQOOeViGeX3GMT3dQF1eePPw6sEE3xSlg=
636+
sigs.k8s.io/controller-runtime v0.13.1/go.mod h1:Zbz+el8Yg31jubvAEyglRZGdLAjplZl+PgtYNI6WNTI=
637637
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 h1:iXTIw73aPyC+oRdyqqvVJuloN1p0AC/kzH07hu3NE+k=
638638
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
639639
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE=

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ kmodules.xyz/monitoring-agent-api/api/v1
526526
# kmodules.xyz/webhook-runtime v0.25.0
527527
## explicit; go 1.18
528528
kmodules.xyz/webhook-runtime/apis/workload/v1
529-
# sigs.k8s.io/controller-runtime v0.13.0
529+
# sigs.k8s.io/controller-runtime v0.13.1
530530
## explicit; go 1.17
531531
sigs.k8s.io/controller-runtime/pkg/conversion
532532
# sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2

0 commit comments

Comments
 (0)