Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Upgrade build/release to Go 1.16 #421

Merged
merged 2 commits into from
Jul 29, 2021
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
2 changes: 1 addition & 1 deletion .github/workflows/build.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.14.1
go-version: 1.16
id: go

- name: Set up Git cookies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
steps:

- name: Check out source
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.16
id: go

- name: Determine version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sweep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14.1
go-version: 1.16
id: go
- name: Set up Git cookies
run: bash scripts/gogetcookie.sh
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/alexkappa/terraform-provider-auth0

go 1.15
go 1.16

require (
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/terraform-plugin-sdk v1.17.2
gopkg.in/auth0.v5 v5.19.1
github.com/hashicorp/terraform-plugin-sdk v1.16.1
gopkg.in/auth0.v5 v5.19.2
)
Loading