Skip to content

Commit

Permalink
increased golang version
Browse files Browse the repository at this point in the history
Signed-off-by: Ildar Valiullin <preved.911@gmail.com>
  • Loading branch information
preved911 committed Jul 28, 2021
1 parent 60d270a commit 52c0d1a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Set up Terraform
uses: hashicorp/setup-terraform@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Import GPG key
id: import_gpg
Expand All @@ -39,4 +39,4 @@ jobs:
args: release --rm-dist
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
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@v2
with:
go-version: 1.15
go-version: 1.16

- name: Run test
run: make test
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Requirements
------------

- [Terraform](https://www.terraform.io/downloads.html) 0.12.x
- [Go](https://golang.org/doc/install) 1.15 (to build the provider plugin)
- [Go](https://golang.org/doc/install) 1.16 (to build the provider plugin)

Building The Provider
---------------------
Expand Down Expand Up @@ -46,7 +46,7 @@ Also there are lots of examples in the [selectel/terraform-examples](https://git
Developing the Provider
---------------------------

If you wish to work on the provider, you'll first need [Go](https://golang.org) installed on your machine (version 1.15+ is *required*).
If you wish to work on the provider, you'll first need [Go](https://golang.org) installed on your machine (version 1.16+ is *required*).

To compile the provider, run `make build`. This will build the provider and put the provider binary in the current directory.

Expand Down Expand Up @@ -80,4 +80,4 @@ build artifacts matching the [layout required](https://www.terraform.io/docs/reg
to publish the provider in the Terraform Registry.

Releases will as drafts. Once marked as published on the GitHub Releases page,
they will become available via the Terraform Registry.
they will become available via the Terraform Registry.
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/terraform-providers/terraform-provider-selectel

go 1.15
go 1.16

require (
github.com/hashicorp/go-retryablehttp v0.6.6
Expand Down

0 comments on commit 52c0d1a

Please sign in to comment.