Skip to content

Commit

Permalink
Merge pull request #95 from jsturtevant/go119
Browse files Browse the repository at this point in the history
Use go 1.19
  • Loading branch information
k8s-ci-robot committed Jan 3, 2023
2 parents 497ef7d + eb121de commit 77880c6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -92,7 +92,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
go-version: 1.19
- id: test-runner
uses: ./.github/actions/tests
env:
Expand Down
2 changes: 1 addition & 1 deletion admission-webhook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Supported versions

This branch supports versions 1.15 and later. If your Kubernetes is version 1.14, you can use the [alpha version of this webhook](https://github.com/kubernetes-sigs/windows-gmsa/tree/alpha-1.14).
This branch supports versions 1.23 and later.

## How to deploy

Expand Down
2 changes: 1 addition & 1 deletion admission-webhook/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/kubernetes-sigs/windows-gmsa/admission-webhook

go 1.18
go 1.19

require (
github.com/mitchellh/go-homedir v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion admission-webhook/make/image.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# must stay consistent with the go version defined in .travis.yml
GO_VERSION = 1.18
GO_VERSION = 1.19
DOCKER_BUILD = docker build . --build-arg GO_VERSION=$(GO_VERSION) --build-arg VERSION=$(TAG)

.PHONY: image_build_dev
Expand Down

0 comments on commit 77880c6

Please sign in to comment.