build(deps-dev): bump eslint-plugin-cypress from 3.5.0 to 4.1.0 in /src/test/K8s-tests #4229
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: Pre-commit check | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
env: | |
TF_DOCS_VERSION: v0.16.0 | |
TFSEC_VERSION: v1.28.6 | |
TFLINT_VERSION: v0.47.0 | |
permissions: | |
contents: read | |
jobs: | |
pre-commit: | |
name: Pre-commit check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Format python code with black | |
uses: psf/black@stable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "npm" | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'oracle' | |
java-version: '23' | |
- name: Install npm dependencies | |
run: npm install | |
- uses: actions/cache@v4 | |
name: Cache plugin dir | |
with: | |
path: ~/.tflint.d/plugins | |
key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.9.8 | |
- name: Setup TFLint | |
uses: terraform-linters/setup-tflint@v4 | |
with: | |
tflint_version: ${{env.TFLINT_VERSION}} | |
- name: Setup Terraform docs | |
run: | | |
wget https://github.com/terraform-docs/terraform-docs/releases/download/${{env.TF_DOCS_VERSION}}/terraform-docs-${{env.TF_DOCS_VERSION}}-linux-amd64.tar.gz -O terraform_docs.tar.gz | |
tar -zxvf terraform_docs.tar.gz terraform-docs | |
chmod +x terraform-docs | |
mv terraform-docs /usr/local/bin/ | |
- name: Setup tfsec | |
run: | | |
curl --output tfsec https://github.com/aquasecurity/tfsec/releases/download/${{env.TFSEC_VERSION}}/tfsec-linux-amd64 | |
chmod +x tfsec | |
mv tfsec /usr/local/bin/ | |
- name: Pre-commit checks | |
uses: pre-commit/[email protected] | |
- name: pre-commit-ci-lite | |
uses: pre-commit-ci/[email protected] | |
if: always() |