Skip to content

build(deps-dev): bump cypress from 13.14.1 to 13.15.0 in /src/test/K8s-tests #3961

build(deps-dev): bump cypress from 13.14.1 to 13.15.0 in /src/test/K8s-tests

build(deps-dev): bump cypress from 13.14.1 to 13.15.0 in /src/test/K8s-tests #3961

Workflow file for this run

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: 20
cache: "npm"
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '22'
- 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.7.4
- 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()