Update TF version constraint #196
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# These github actions will update Terraform section(s) of README(s), and | |
# perform linting using pre-commit. | |
--- | |
# yamllint disable rule:line-length | |
# spell-checker: ignore yamllint chmod | |
name: pre-commit | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- main | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_WITH: dev | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install talisman | |
run: | | |
sudo curl -sLo /usr/local/bin/talisman https://github.com/thoughtworks/talisman/releases/download/v1.32.0/talisman_linux_amd64 | |
sudo chmod 0755 /usr/local/bin/talisman | |
- name: Install terraform-docs | |
run: | | |
sudo sh -c 'curl -sL https://github.com/terraform-docs/terraform-docs/releases/download/v0.19.0/terraform-docs-v0.19.0-linux-amd64.tar.gz | tar xzf - -C /usr/local/bin' | |
sudo chmod 0755 /usr/local/bin/terraform-docs | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3.5 | |
bundler-cache: true | |
- uses: pre-commit/action@v3.0.1 |