Hey folks 👋
So I'm trying to use Tailscale in my GitHub Actions workflows and I keep running into this annoying issue where each
platform has a different "latest" version. This is not great.
Right now if I check the stable releases:
I can't just pin to a single version in my CI because it'll work on some platforms and fail on others. Here's what I get
when I try to use the macOS version (1.96.5) on Windows:
Run tailscale/github-action@306e68a486fd2350f2bfc3b19fcd143891a4a2d8
with:
version: 1.96.5
...
▶️ curl https://pkgs.tailscale.com/stable/tailscale-setup-1.96.5-amd64.msi.sha256
curl: (22) The requested URL returned error: 404
Yep, 404 because Windows only goes up to 1.96.3.
I ended up having to add platform-specific logic to my GitHub Action:
- name: Set Tailscale version
id: set-version
shell: bash
run: |
case "${{ runner.os }}" in
Linux) echo "version=1.96.4" >> $GITHUB_OUTPUT ;;
macOS) echo "version=1.96.5" >> $GITHUB_OUTPUT ;;
Windows) echo "version=1.96.3" >> $GITHUB_OUTPUT ;;
esac
This works but it's kinda ridiculous that I have to do this.
This affects anyone running cross-platform CI/CD, such as GitHub Actions with multiple runners, who legitimately avoid using latest for security and stability reasons. I understand that coordinating releases across platforms is challenging, but requiring users to maintain platform-specific version matrices adds unnecessary friction for those using Tailscale in automated deployments.
Couldn't you release all platforms at the same time with the same version number? This seems like the obvious solution.
Hey folks 👋
So I'm trying to use Tailscale in my GitHub Actions workflows and I keep running into this annoying issue where each
platform has a different "latest" version. This is not great.
Right now if I check the stable releases:
I can't just pin to a single version in my CI because it'll work on some platforms and fail on others. Here's what I get
when I try to use the macOS version (1.96.5) on Windows:
Yep, 404 because Windows only goes up to 1.96.3.
I ended up having to add platform-specific logic to my GitHub Action:
This works but it's kinda ridiculous that I have to do this.
This affects anyone running cross-platform CI/CD, such as GitHub Actions with multiple runners, who legitimately avoid using
latestfor security and stability reasons. I understand that coordinating releases across platforms is challenging, but requiring users to maintain platform-specific version matrices adds unnecessary friction for those using Tailscale in automated deployments.Couldn't you release all platforms at the same time with the same version number? This seems like the obvious solution.