Use real test secret now #44
Workflow file for this run
This file contains hidden or 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: CI | |
| on: [push, pull_request] | |
| env: | |
| TF_DIR: "./terraform" | |
| jobs: | |
| # I think we need actions runner to get this working | |
| #truflehog: | |
| # runs-on: self-hosted | |
| # container: buildpack-deps:bookworm | |
| # steps: | |
| # - name: Install requirements | |
| # run: | | |
| # export DEBIAN_FRONTEND=noninteractive | |
| # apt-get update | |
| # apt-get install -y jq | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # with: | |
| # fetch-depth: 0 | |
| # - name: Avoid dubious ownership error | |
| # run: | | |
| # git config --global --add safe.directory '*' | |
| # - name: Secret Scanning | |
| # uses: trufflesecurity/trufflehog@main | |
| # with: | |
| # extra_args: --results=verified,unknown | |
| tflint: | |
| runs-on: self-hosted | |
| container: buildpack-deps:bookworm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| name: Checkout source code | |
| - name: Calculate tflint config hash | |
| id: hash | |
| run: | | |
| echo "hash=$(sha256sum $TF_DIR/.tflint.hcl | cut -d' ' -f1)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v4 | |
| name: Cache plugin dir | |
| with: | |
| path: ~/.tflint.d/plugins | |
| key: ${{ matrix.os }}-tflint-${{ steps.hash.outputs.hash }} | |
| - uses: terraform-linters/setup-tflint@v4 | |
| name: Setup TFLint | |
| with: | |
| tflint_version: latest | |
| - name: Show version | |
| run: | | |
| cd $TF_DIR | |
| tflint --version | |
| - name: Init TFLint | |
| run: | | |
| cd $TF_DIR | |
| tflint --init | |
| - name: Run TFLint | |
| run: | | |
| cd $TF_DIR | |
| tflint -f compact |