Skip to content

Commit 6e8b94a

Browse files
authored
Use go 1.18 (#3447)
1 parent fd748e1 commit 6e8b94a

File tree

96 files changed

+274
-438
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+274
-438
lines changed

.github/workflows/checkLicenses.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v2
24-
- name: Set up Go 1.17
24+
- name: Set up Go 1.18
2525
uses: actions/setup-go@v1
2626
with:
27-
go-version: 1.17
27+
go-version: 1.18
2828
- run: |
2929
./scripts/create-licenses.sh
3030
# Upload the licenses list so it's available if needed

.github/workflows/e2eEnvironment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Go
3535
uses: actions/setup-go@v2
3636
with:
37-
go-version: 1.17
37+
go-version: 1.18
3838
- uses: actions/checkout@master
3939
# 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
4040
# If you upgrade this version confirm the changes match your expectations

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
run: |
4242
which podman
4343
podman version
44-
- name: Set up Go 1.17
44+
- name: Set up Go 1.18
4545
uses: actions/setup-go@v1
4646
with:
47-
go-version: 1.17
47+
go-version: 1.18
4848
id: go
4949
- name: Check out code into the Go module directory
5050
uses: actions/checkout@v1

.github/workflows/live-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v2
3535
with:
36-
go-version: 1.17
36+
go-version: 1.18
3737
- uses: actions/checkout@master
3838
# 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
3939
# If you upgrade this version confirm the changes match your expectations

.github/workflows/porch-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
- "kindest/node:v1.23.4@sha256:0e34f0d0fd448aa2f2819cfd74e99fe5793a6e4938b328f657c8e3f81ee0dfb9"
5454

5555
steps:
56-
- name: Set up Go 1.17
56+
- name: Set up Go 1.18
5757
uses: actions/setup-go@v2
5858
with:
59-
go-version: 1.17
59+
go-version: 1.18
6060
- name: Checkout Porch
6161
uses: actions/checkout@v2
6262
- name: Build kpt

.github/workflows/porch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
name: Porch Unit Tests
3030
runs-on: ubuntu-latest
3131
steps:
32-
- name: Set up Go 1.17
32+
- name: Set up Go 1.18
3333
uses: actions/setup-go@v2
3434
with:
35-
go-version: 1.17.6
35+
go-version: 1.18
3636
- name: Run Porch Unit Tests
3737
uses: actions/checkout@v2
3838
- name: Verify format / headers etc

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Go
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.17
29+
go-version: 1.18
3030
- name: Checkout
3131
uses: actions/checkout@v2
3232
with:

.github/workflows/verifyContent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/setup-go@v2
3232
with:
33-
go-version: 1.17
33+
go-version: 1.18
3434
- uses: actions/checkout@v2
3535
- run: |
3636
make build

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/GoogleContainerTools/kpt
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/GoogleContainerTools/kpt/porch/api v0.0.0-20220707151439-cb4c4e496c92

go.sum

Lines changed: 0 additions & 53 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)