From 32ba04c95da2bccc3e439a7eea1c017f21162c06 Mon Sep 17 00:00:00 2001 From: Nils Date: Mon, 16 Dec 2024 16:11:45 +0100 Subject: [PATCH] add missing terraform for ubuntu 24.04 runner --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f06068..b851d98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + # https://github.com/hashicorp/setup-terraform + - uses: hashicorp/setup-terraform@v3 - name: Init run: terraform init - name: Validate run: terraform validate - name: Formatting run: terraform fmt -recursive -check -diff -no-color + # https://github.com/marketplace/actions/setup-tflint - name: Lint uses: terraform-linters/setup-tflint@v4 @@ -25,6 +29,7 @@ jobs: tflint_version: latest - id: tflint run: tflint --recursive --format compact + # https://github.com/marketplace/actions/tfsec-action - name: tfsec uses: aquasecurity/tfsec-action@v1.0.3 \ No newline at end of file