Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions actions/get-baton/get-baton.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down