Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Bumping go version to 1.19 #150

Merged
merged 1 commit into from
Feb 7, 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
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand All @@ -54,7 +54,7 @@ jobs:
fetch-depth: "0"
- uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Unit Tests
run: make mod_download && make test_unit_codecov
- name: Push CodeCov
Expand All @@ -65,7 +65,7 @@ jobs:
fail_ci_if_error: false
- uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Lint
run: make install && make lint
- name: Bench tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fetch-depth: "0"
- uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Unit Tests
run: make mod_download && make test_unit_codecov
- name: Push CodeCov
Expand All @@ -28,7 +28,7 @@ jobs:
name: Lint
uses: flyteorg/flytetools/.github/workflows/lint.yml@master
with:
go-version: '1.18'
go-version: '1.19'
test-generate-integrity:
name: Ensure go generate has run
runs-on: ubuntu-latest
Expand All @@ -39,7 +39,7 @@ jobs:
fetch-depth: "0"
- uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: '1.19'
- name: Go generate and diff
run: DELTA_CHECK=true make generate

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/flyteorg/flytestdlib

go 1.18
go 1.19

require (
github.com/aws/aws-sdk-go v1.44.2
Expand Down