Skip to content

Bump pylint from 3.0.2 to 3.0.3 in /terraform/vault/config/kubernetes #143

Bump pylint from 3.0.2 to 3.0.3 in /terraform/vault/config/kubernetes

Bump pylint from 3.0.2 to 3.0.3 in /terraform/vault/config/kubernetes #143

Workflow file for this run

---
name: pre-commit
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
env:
terraform_version: 1.5.5
tflint_version: v0.49.0
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
# requites the history of the PR
fetch-depth: 0
- name: Cache TFLint plugin dir
uses: actions/cache@v3
with:
path: ~/.tflint.d/plugins
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }}
- name: Setup TFLint
uses: terraform-linters/setup-tflint@v4
with:
tflint_version: ${{ env.tflint_version }}
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ env.terraform_version }}
terraform_wrapper: false
- name: Setup Python
uses: actions/setup-python@v5
- name: Run pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}