From 54b997f07ea30aa13a3f0f999611dde8b6c575f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Schmitz?= Date: Wed, 18 Dec 2024 11:31:24 +0100 Subject: [PATCH] chore: provide terraform binary to pipeline (#615) * chore: pull terraform binary explicitly * chore: use unzip instead of not available bsdtar * chore: reuse existing terraform from path * chore: use github action to install terraform in pipeline * chore: removed explicit terraform version --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ebbbcd1c..597e862f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,6 +16,8 @@ jobs: uses: ./.github/actions/build with: go-version: ${{ env.GO_VERSION }} + - name: Setup Terraform + uses: hashicorp/setup-terraform@v2 - name: Lint run: make lint - name: Test