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

Use go 1.19 #95

Merged
merged 1 commit into from
Jan 3, 2023
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
Use go 1.19
Signed-off-by: James Sturtevant <[email protected]>
  • Loading branch information
jsturtevant committed Jan 3, 2023
commit eb121de7496c49630283ed66a17e9dff60a1bde9
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