Skip to content

Commit

Permalink
bump go version from 1.17 to 1.19 (#1163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurochan authored Aug 10, 2022
1 parent c94c2f9 commit a106ac8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: setup-go
uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.19'

- name: Install dependencies
run: make setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.19
if: ${{ steps.release.outputs.release_created }}

- name: Run GoReleaser
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: '1.19'
- name: Install dependencies
run: make setup
- name: make ${{ matrix.target }}
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ test-acceptance: fmt deps ## runs all tests, including the acceptance tests whic
.PHONY: test-acceptance

deps:
go mod tidy -compat=1.17
go mod tidy -compat=1.19
.PHONY: deps

install: ## install the terraform-provider-snowflake binary in $GOPATH/bin
Expand Down Expand Up @@ -97,7 +97,7 @@ check-docs: docs ## check that docs have been generated
.PHONY: check-docs

check-mod:
go mod tidy -compat=1.17
go mod tidy -compat=1.19
git diff --exit-code -- go.mod go.sum
.PHONY: check-mod

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 github.com/Snowflake-Labs/terraform-provider-snowflake

go 1.17
go 1.19

require (
github.com/DATA-DOG/go-sqlmock v1.5.0
Expand Down

0 comments on commit a106ac8

Please sign in to comment.