Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix go tidy #255

Merged
merged 5 commits into from
Mar 27, 2024
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
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -88,7 +88,7 @@ jobs:
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-pkg-mod
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-build
timeout-minutes: 3
Expand All @@ -102,7 +102,7 @@ jobs:
${{ runner.os }}-go-build-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-build
- name: Cache cache-terraform-plugin-dir
uses: actions/[email protected].0
uses: actions/[email protected].2
continue-on-error: true
id: cache-terraform-plugin-dir
timeout-minutes: 2
Expand All @@ -129,7 +129,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache cache-terraform-providers-schema
uses: actions/[email protected].0
uses: actions/[email protected].2
continue-on-error: true
id: cache-terraform-providers-schema
timeout-minutes: 2
Expand All @@ -138,7 +138,7 @@ jobs:
terraform-providers-schema
key: ${{ runner.os }}-terraform-providers-schema-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('internal/**', 'api/**', 'powershell/**') }}
- name: Cache cache-terraform-plugin-dir
uses: actions/[email protected].0
uses: actions/[email protected].2
continue-on-error: true
id: cache-terraform-plugin-dir
timeout-minutes: 2
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -186,7 +186,7 @@ jobs:
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-pkg-mod
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-build
timeout-minutes: 3
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -230,7 +230,7 @@ jobs:
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-pkg-mod
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-build
timeout-minutes: 3
Expand All @@ -257,7 +257,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -269,7 +269,7 @@ jobs:
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-pkg-mod
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-build
timeout-minutes: 3
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.CREATE_TAG_GITHUB_TOKEN }}
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 3
Expand All @@ -343,7 +343,7 @@ jobs:
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}-${{ hashFiles('**/go.sum') }}
${{ runner.os }}-go-pkg-mod-${{ hashFiles('.github/workflows/release.yml') }}
${{ runner.os }}-go-pkg-mod
- uses: actions/[email protected].0
- uses: actions/[email protected].2
continue-on-error: true
id: cache-go-build
timeout-minutes: 3
Expand Down
24 changes: 13 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
module github.com/taliesins/terraform-provider-hyperv

go 1.19
go 1.21

toolchain go1.21.6

require (
github.com/dylanmei/iso8601 v0.1.0
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/terraform-plugin-docs v0.18.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.32.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
github.com/jolestar/go-commons-pool/v2 v2.1.2
github.com/masterzen/winrm v0.0.0-20220917170901-b07f6cb0598d
github.com/segmentio/ksuid v1.0.4
Expand All @@ -19,7 +21,7 @@ require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.0 // indirect
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
github.com/ProtonMail/go-crypto v1.1.0-alpha.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/armon/go-radix v1.0.0 // indirect
Expand All @@ -39,12 +41,12 @@ require (
github.com/hashicorp/go-plugin v1.6.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hc-install v0.6.2 // indirect
github.com/hashicorp/hc-install v0.6.3 // indirect
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-exec v0.20.0 // indirect
github.com/hashicorp/terraform-json v0.21.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.21.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.22.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
Expand Down Expand Up @@ -77,15 +79,15 @@ require (
github.com/yuin/goldmark v1.6.0 // indirect
github.com/yuin/goldmark-meta v1.1.0 // indirect
github.com/zclconf/go-cty v1.14.2 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.61.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
google.golang.org/grpc v1.61.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)
Loading
Loading