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

update to go 1.18 #20

Merged
merged 3 commits into from
Aug 19, 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
4 changes: 2 additions & 2 deletions .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-

- name: Set up Go 1.17.x
- name: Set up Go 1.18.x
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
check-latest: true

- run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
check-latest: true

- name: Check out code
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
check-latest: true

- name: Check out code
Expand All @@ -61,10 +61,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-

- name: Set up Go 1.17.x
- name: Set up Go 1.18.x
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
check-latest: true
- uses: actions/checkout@v3
- run: ./hack/verify-golangci-lint.sh
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
check-latest: true

- name: Check out code
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
restore-keys: |
${{ runner.os }}-go-

- name: Set up Go 1.18.x
uses: actions/setup-go@v3
with:
go-version: 1.18
check-latest: true

- name: Check out code
uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module chainguard.dev/go-grpc-kit

go 1.17
go 1.18

require (
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
Expand Down