Skip to content

Commit

Permalink
chore: remove support for floating major branchs post v1
Browse files Browse the repository at this point in the history
BREAKING CHANGE: With v2 and forward, you can no longer use a major version identifier with install-terraform.  Instead use dependabot to receive updates for your actions.  Documented in README.
  • Loading branch information
bcomnes committed Oct 1, 2020
1 parent be42947 commit b5da20c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,26 @@ jobs:
terraform apply -auto-approve
```

## FAQ

### Can you offer a major version tag/branch alias? I want automatic updates!

Nope! This was always weird/bad pattern of github actions. Luckily github offers a solution for this. Create a `.github/dependabot.yml` with, at a minimum, the following config:

```yaml
# Basic dependabot.yml file with
# minimum configuration for two package managers

version: 2
updates:
# Enable updates to github actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

```


## License
The scripts and documentation in this project are released under the [MIT License](LICENSE)

0 comments on commit b5da20c

Please sign in to comment.