chore(deps): update terraform oci to v6 #129
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
name: Static analysis | |
on: | |
push: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
terraform_lint: | |
name: Terraform lint | |
runs-on: ubuntu-22.04 | |
# Exclude in-repo PRs from running this job | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork | |
steps: | |
- name: π₯ Checkout source | |
uses: actions/checkout@v4 | |
- name: π§° Setup Terraform CLI | |
uses: hashicorp/setup-terraform@v3 | |
env: | |
# renovate: datasource=docker depName=hashicorp/terraform versioning=docker | |
TERRAFORM_VERSION: 1.8.2 | |
with: | |
terraform_version: ${{ env.TERRAFORM_VERSION }} | |
terraform_wrapper: false | |
- name: βοΈ Initialize Terraform | |
run: terraform init | |
- name: π Terraform files format check | |
run: terraform fmt -check | |
- name: π Validate Terraform files | |
run: terraform validate | |
ansible_lint: | |
name: Ansible lint | |
runs-on: ubuntu-22.04 | |
# Exclude in-repo PRs from running this job | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork | |
steps: | |
- name: π₯ Checkout source | |
uses: actions/checkout@v4 | |
- name: π§° Set up Poetry | |
env: | |
# renovate: datasource=pypi depName=poetry | |
POETRY_VERSION: 1.8.2 | |
run: pipx install poetry==${{ env.POETRY_VERSION }} | |
- name: π§° Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: pyproject.toml | |
cache: poetry | |
- name: βοΈ Create Ansible Vault password file | |
env: | |
ANSIBLE_VAULT_PASSWORD: ${{ secrets.ANSIBLE_VAULT_PASSWORD }} | |
run: | | |
mkdir secrets | |
echo "$ANSIBLE_VAULT_PASSWORD" > secrets/vault_password | |
- name: π§° Install Poetry dependencies | |
run: poetry install | |
- name: π Run ansible-lint | |
run: poetry run ansible-lint . |