From 23c0b46017c6bffdbc4228da4fd3cb06ad8dc360 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali <me@matifali.dev> Date: Thu, 4 Jul 2024 16:49:30 +0300 Subject: [PATCH 1/2] ci: drop terraform versions < 1.6.x, add 1.9.x for tests --- .github/workflows/test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f17d1c10..e599ef63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,15 +64,10 @@ jobs: fail-fast: false matrix: terraform: - - "1.0.*" - - "1.1.*" - - "1.2.*" - - "1.3.*" - - "1.4.*" - - "1.5.*" - "1.6.*" - "1.7.*" - "1.8.*" + - "1.9.*" steps: - name: Set up Go uses: actions/setup-go@v5 @@ -112,7 +107,7 @@ jobs: - uses: hashicorp/setup-terraform@v3 with: - terraform_version: "1.3.*" + terraform_version: "latest" terraform_wrapper: false - name: Check out code into the Go module directory From 424a3f09e959d459f1d075caa89b6f7a2f6af177 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali <me@matifali.dev> Date: Thu, 4 Jul 2024 16:51:50 +0300 Subject: [PATCH 2/2] fixup! --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e599ef63..57faf626 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,6 +64,7 @@ jobs: fail-fast: false matrix: terraform: + - "1.5.*" - "1.6.*" - "1.7.*" - "1.8.*"