File tree Expand file tree Collapse file tree 1 file changed +16
-7
lines changed
.github/actions/brew_and_gittoken Expand file tree Collapse file tree 1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,27 @@ runs:
1515 shell : bash
1616 - run : echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH
1717 shell : bash
18+
1819 - name : Setup
1920 run : |
2021 wget https://github.com/gruntwork-io/terragrunt/releases/download/v0.59.1/terragrunt_linux_amd64
2122 mv terragrunt_linux_amd64 terragrunt
2223 chmod +x terragrunt
2324 mv terragrunt /usr/local/bin
2425 shell : bash
25- - name : install Terraform
26- run : |
26+
27+ - name : Setup
28+ run : |
29+ mkdir -p tmp
30+ cd tmp
2731 wget https://releases.hashicorp.com/terraform/1.9.8/terraform_1.9.8_linux_amd64.zip
28- rm -rf terraform/
29- sudo unzip -o terraform_1.9.8_linux_amd64.zip
30- sudo mv terraform /usr/local/bin/
31- terraform --version
32- shell : bash
32+ unzip -o terraform_1.9.8_linux_amd64.zip
33+ chmod +x terraform
34+ mv terraform /usr/local/bin
35+ shell : bash
36+ - name : Versions
37+ run : |
38+ terragrunt -v
39+ terraform --version
40+ shell : bash
41+
You can’t perform that action at this time.
0 commit comments