diff --git a/.github/actions/setup-python/action.yaml b/.github/actions/setup-python/action.yaml index 098cc74..5bb9011 100644 --- a/.github/actions/setup-python/action.yaml +++ b/.github/actions/setup-python/action.yaml @@ -8,6 +8,14 @@ runs: with: # Install a specific version of uv. version: "0.4.30" + - name: Install terraform + run: | + TERRAFORM_VERSION=1.10.2 + git clone --depth=1 https://github.com/tfutils/tfenv.git ~/.tfenv + echo 'export PATH="$HOME/.tfenv/bin:$PATH"' >> ~/.bash_profile + TFENV_ARCH=arm64 tfenv install $TERRAFORM_VERSION + tfenv use $TERRAFORM_VERSION + shell: bash - name: Set up Python uses: actions/setup-python@v5 with: