From acbc58ae12ab4f5c4d7df2a1ea418d7cc9444fad Mon Sep 17 00:00:00 2001 From: Yousif Akbar <11247449+yhakbar@users.noreply.github.com> Date: Fri, 2 Aug 2024 08:21:11 -0400 Subject: [PATCH] chore: Bumping OpenTofu to `v1.8.0` (#3315) --- .circleci/config.yml | 4 ++-- _ci/install-opentofu.ps1 | 4 ++-- docs/_docs/01_getting-started/supported-versions.md | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 40dca10ee..34b7a9bbd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ install_tofu: &install_tofu command: | pushd . cd /tmp - curl -L "https://github.com/opentofu/opentofu/releases/download/v1.7.0/tofu_1.7.0_linux_amd64.zip" -o tofu.zip + curl -L "https://github.com/opentofu/opentofu/releases/download/v1.8.0/tofu_1.8.0_linux_amd64.zip" -o tofu.zip unzip -o tofu.zip sudo install -m 0755 tofu /usr/local/bin/tofu rm -rf tofu @@ -576,4 +576,4 @@ workflows: - AWS__PHXDEVOPS__circle-ci-test - GCP__automated-tests - GITHUB__PAT__gruntwork-ci - - APPLE__OSX__code-signing \ No newline at end of file + - APPLE__OSX__code-signing diff --git a/_ci/install-opentofu.ps1 b/_ci/install-opentofu.ps1 index 528a60cb2..4c491607f 100755 --- a/_ci/install-opentofu.ps1 +++ b/_ci/install-opentofu.ps1 @@ -8,8 +8,8 @@ if (Test-Path -Path $OpenTofuInstallPath) Remove-Item $OpenTofuInstallPath -Recurse } # Download OpenTofu and unpack it -$OpenTofuURI = "https://github.com/opentofu/opentofu/releases/download/v1.7.0/tofu_1.7.0_windows_amd64.zip" -$output = "tofu_1.7.0_windows_amd64.zip" +$OpenTofuURI = "https://github.com/opentofu/opentofu/releases/download/v1.8.0/tofu_1.8.0_windows_amd64.zip" +$output = "tofu_1.8.0_windows_amd64.zip" $ProgressPreference = "SilentlyContinue" Invoke-WebRequest -Uri $OpenTofuURI -OutFile $output New-Item -ItemType "directory" -Path $OpenTofuTmpPath diff --git a/docs/_docs/01_getting-started/supported-versions.md b/docs/_docs/01_getting-started/supported-versions.md index 1ec58c975..6c2177aa9 100644 --- a/docs/_docs/01_getting-started/supported-versions.md +++ b/docs/_docs/01_getting-started/supported-versions.md @@ -15,6 +15,7 @@ The officially supported versions are: | OpenTofu Version | Terragrunt Version | |------------------|------------------------------------------------------------------------------| +| 1.8.x | >= [0.66.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.66.0) | | 1.7.x | >= [0.58.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.58.0) | | 1.6.x | >= [0.52.0](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.52.0) |