Hi! I'm testing this Action on a pipeline and I'm getting the following error:
Run tofuutils/setup-tenv@21ac3d4b3c3084b78eb2e7e7ae395a79e27928f2
with:
tenv_version: 4.9.0
tenv_wrapper: true
[
Build {
name: 'tenv_v4.9.0_386.apk',
url: 'https://github.com/tofuutils/tenv/releases/download/v4.9.0/tenv_v4.9.0_386.apk'
},
[...] # Removed for brevity
Build {
name: 'tenv_v4.2.0_Linux_i386.tar.gz.sig',
url: 'https://github.com/tofuutils/tenv/releases/download/v4.2.0/tenv_v4.2.0_Linux_i386.tar.gz.sig'
},
... 40 more items
]
tenv_v4.9.0_Linux_arm64.zip
Error: Error: tenv version 4.9.0 not available for Linux and arm64
And I think the problem is that in the Releases page for tenv, the file extension is now .tar.gz, not .zip: tenv_v4.9.0_Linux_arm64.tar.gz.
This is my pipeline jobs section:
jobs:
...
tenv:
runs-on: *runs-on
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- id: install-tenv
uses: tofuutils/setup-tenv@21ac3d4b3c3084b78eb2e7e7ae395a79e27928f2
with:
tenv_version: 4.9.0
- name: Test terraform/terragrunt
env:
TENV_AUTO_INSTALL: "true"
TENV_GITHUB_TOKEN: "$GITHUB_TOKEN"
run: |
terraform version
terragrunt version
If you need any other information, let me know!
Thanks :)
Hi! I'm testing this Action on a pipeline and I'm getting the following error:
Run tofuutils/setup-tenv@21ac3d4b3c3084b78eb2e7e7ae395a79e27928f2 with: tenv_version: 4.9.0 tenv_wrapper: true [ Build { name: 'tenv_v4.9.0_386.apk', url: 'https://github.com/tofuutils/tenv/releases/download/v4.9.0/tenv_v4.9.0_386.apk' }, [...] # Removed for brevity Build { name: 'tenv_v4.2.0_Linux_i386.tar.gz.sig', url: 'https://github.com/tofuutils/tenv/releases/download/v4.2.0/tenv_v4.2.0_Linux_i386.tar.gz.sig' }, ... 40 more items ] tenv_v4.9.0_Linux_arm64.zip Error: Error: tenv version 4.9.0 not available for Linux and arm64And I think the problem is that in the Releases page for
tenv, the file extension is now.tar.gz, not.zip:tenv_v4.9.0_Linux_arm64.tar.gz.This is my pipeline jobs section:
If you need any other information, let me know!
Thanks :)