From 62fb2e1da159d84e2fb3e4dd741d66a9c39737f6 Mon Sep 17 00:00:00 2001 From: Brtbr Date: Mon, 17 Mar 2025 23:36:37 +0100 Subject: [PATCH 1/2] feat: add stackitcli --- lib/utils.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 7668b00846f3494a4f9f21e7fac134d7c45ca11e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 22:52:47 +0000 Subject: [PATCH 2/2] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5c3ffed..e730deb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,14 +10,14 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: asdf-vm/actions/install@v2 - run: scripts/lint.bash actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check workflow files uses: docker://rhysd/actionlint:1.6.23 with: