Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update go 1.19 #364

Merged
merged 1 commit into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'main'
- '[0-9]+.[1-9][0-9]*.x'
env:
GO_VERSION: "~1.18"
GO_VERSION: "~1.19"
CONTROLLER_TOOLS_VERSION: "v0.9.2"
ENVTEST_K8S_VERSION: "1.24.2"
SCHEDULER_COMPATIBLE_K8S_VERSION: "v0.24.3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/component-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Component Tests
on:
workflow_call:
env:
GO_VERSION: "~1.18"
GO_VERSION: "~1.19"
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: E2E-Test
on:
workflow_call:
env:
GO_VERSION: "~1.18"
GO_VERSION: "~1.19"
CERT_MANAGER_VERSION: "v1.10.0"
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Integration-Test
on:
workflow_call:
env:
GO_VERSION: "~1.18"
GO_VERSION: "~1.19"
CERT_MANAGER_VERSION: "v1.10.0"
KUTTL_VERSION: "0.13.0"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Performance Tests
on:
workflow_call:
env:
GO_VERSION: "~1.18"
GO_VERSION: "~1.19"
CERT_MANAGER_VERSION: "v1.10.0"
USE_EXISTING_CLUSTER: "true"
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
shell: bash

env:
GO_VERSION: "1.18"
GO_VERSION: "1.19"
CONTROLLER_TOOLS_VERSION: "v0.9.2"
SCHEDULER_COMPATIBLE_K8S_VERSION: "v0.24.3"

Expand Down
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.18.8-alpine3.16 as builder
FROM --platform=$BUILDPLATFORM golang:1.19.3-alpine3.16 as builder

ARG CONTROLLER_TOOLS_VERSION=v0.9.2
ARG GIT_HASH
Expand Down
2 changes: 1 addition & 1 deletion operator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/keptn/lifecycle-toolkit/operator

go 1.18
go 1.19

require (
github.com/go-logr/logr v1.2.3
Expand Down
2 changes: 1 addition & 1 deletion scheduler/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM --platform=$BUILDPLATFORM golang:1.18.8-alpine3.16 as builder
FROM --platform=$BUILDPLATFORM golang:1.19.3-alpine3.16 as builder

ARG SCHEDULER_COMPATIBLE_K8S_VERSION
ARG RELEASE_VERSION
Expand Down
2 changes: 1 addition & 1 deletion scheduler/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/keptn/lifecycle-toolkit/scheduler

go 1.18
go 1.19

require (
github.com/kelseyhightower/envconfig v1.4.0
Expand Down