From fd7b26786abf9ab44256b401a0d8f5ce72740b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zden=C4=9Bk=20Vydra?= <485514@mail.muni.cz> Date: Tue, 31 Dec 2024 12:17:54 +0100 Subject: [PATCH] Install terraform in CI, test with only terraform 1.5 and 1.6 (#110) --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b9d23de..2c8b111 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,10 @@ jobs: with: go-version-file: 'go.mod' cache: true + - uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2 + with: + terraform_version: "1.6-*" + terraform_wrapper: false - run: go generate ./... - name: git diff run: | @@ -55,9 +59,6 @@ jobs: fail-fast: false matrix: terraform: - - '1.2' - - '1.3' - - '1.4' - '1.5' - '1.6' steps: