diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1cb247c..8d8493c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,9 +26,9 @@ jobs: run: git fetch --prune --unshallow - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: 1.17 + go-version: '>=1.19.0' - name: Import GPG key id: import_gpg @@ -43,7 +43,7 @@ jobs: uses: goreleaser/goreleaser-action@v4.2.0 with: version: latest - args: release --rm-dist + args: release --clean env: GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} GITHUB_TOKEN: ${{ secrets.GH_PAT }} diff --git a/GNUmakefile b/GNUmakefile index e91f7ba..c143db8 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ HOSTNAME=github.com NAMESPACE=nleiva NAME=nautobot BINARY=terraform-provider-${NAME} -VERSION=0.3.1 +VERSION=0.3.2 OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) diff --git a/README.md b/README.md index 1953fb8..cd96655 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Nautobot provider created for educational purposes. You can fork it for long-ter ## Requirements - [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x -- [Go](https://golang.org/doc/install) >= 1.17 +- [Go](https://golang.org/doc/install) >= 1.19 ## Building The Provider @@ -40,7 +40,7 @@ The provide takes two arguments, `url` and `token`. For the data sources and res terraform { required_providers { nautobot = { - version = "0.3.1" + version = "0.3.2" source = "nleiva/nautobot" } } diff --git a/test/main.tf b/test/main.tf index 08d9ea2..427083c 100644 --- a/test/main.tf +++ b/test/main.tf @@ -1,7 +1,7 @@ terraform { required_providers { nautobot = { - version = "0.3.1" + version = "0.3.2" source = "github.com/nleiva/nautobot" } }