diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14fd414..a32a17b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,6 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: asdf_plugin_test - uses: asdf-vm/actions/plugin-test@v2 + uses: asdf-vm/actions/plugin-test@v3 with: command: stackit --version diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5c3ffed..78c3499 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: asdf-vm/actions/install@v2 + - uses: asdf-vm/actions/install@v3 - run: scripts/lint.bash actionlint: diff --git a/lib/utils.bash b/lib/utils.bash index eb615d7..74018b7 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -42,7 +42,7 @@ download_release() { filename="$2" # TODO: Adapt the release URL convention for stackitcli - url="$GH_REPO/archive/v${version}.tar.gz" + url="$GH_REPO/archive/stackit-cli_${version}_linux_amd64.tar.gz" echo "* Downloading $TOOL_NAME release $version..." curl "${curl_opts[@]}" -o "$filename" -C - "$url" || fail "Could not download $url"