diff --git a/README.md b/README.md index 38a43a3..a8c6aaa 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ Roll out the caller workflow before marking the check required. The shared workf ### Get Baton -The get-baton action downloads the latest version of [Baton](https://github.com/conductorone/baton) and installs it to /usr/local/bin/baton. +The get-baton action downloads the latest version of [Baton](https://github.com/conductorone/baton-sdk) and installs it to /usr/local/bin/baton. ```yaml - name: Install baton diff --git a/actions/get-baton/get-baton.sh b/actions/get-baton/get-baton.sh index acee7ac..d1d712c 100755 --- a/actions/get-baton/get-baton.sh +++ b/actions/get-baton/get-baton.sh @@ -13,8 +13,8 @@ if [ "${ARCH}" = "x86_64" ]; then ARCH="amd64" fi -RELEASES_URL="https://api.github.com/repos/conductorone/baton/releases/latest" -BASE_URL="https://github.com/conductorone/baton/releases/download" +RELEASES_URL="https://api.github.com/repos/conductorone/baton-sdk/releases/latest" +BASE_URL="https://github.com/conductorone/baton-sdk/releases/download" curl_opts=(--fail-with-body "${RELEASES_URL}") if [ -n "${GITHUB_TOKEN:-}" ]; then