Skip to content

Commit

Permalink
[patch] update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kscarlett committed Jul 19, 2021
1 parent ea52697 commit 61bf118
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 58 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
Expand All @@ -36,7 +36,7 @@ jobs:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v2.5.0
with:
version: latest
args: release --rm-dist
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tag
on:
push:
branch:
- "main"
jobs:
tag:
name: Tag
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Unshallow
run: git fetch --tags --prune --unshallow
- name: install autotag binary
run: |
curl -sL https://git.io/autotag-install | sudo sh -s -- -b /usr/bin
- name: increment version
run: |
autotag --branch main
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
id: go

- name: Check out code into the Go module directory
uses: actions/[email protected].3
uses: actions/[email protected].4

- name: Get dependencies
run: |
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
id: go

- name: Check out code into the Go module directory
uses: actions/[email protected].3
uses: actions/[email protected].4

- name: Get dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you're wondering what humid is, you can find more information in the [humid G

I'd recommend against using this for now as I'm actively working on it.

If that doesn't deter you though, you can follow the example in [examples/humid.tf](examples/humid.tf). You may notice that it bears a lot of similarity to the `hashicorp/random` provider, and that's because that's what I based this off.
If that doesn't deter you though, you can follow the example in [examples/humid.tf](examples/humid.tf). You may notice that it bears a lot of similarity to the `hashicorp/random` provider - that's because that's what I based this off.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ go 1.16

require (
github.com/hashicorp/terraform-plugin-docs v0.4.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.4
github.com/hashicorp/terraform-plugin-sdk/v2 v2.7.0
github.com/kscarlett/humid v0.2.0
)
Loading

0 comments on commit 61bf118

Please sign in to comment.