tailscale / tailscale/github-action
Different Tailscale versions across platforms is pain (Linux 1.96.4, Windows 1.96.3, macOS 1.96.5)
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 938
- Forks
- 137
- PR merge metrics
- No merged PRs in 30d
Description
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:
- Linux: 1.96.4 (https://pkgs.tailscale.com/stable/#static)
- Windows: 1.96.3 (https://pkgs.tailscale.com/stable/#windows)
- macOS: 1.96.5 (https://pkgs.tailscale.com/stable/#macos)
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.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
The issue concerns tailscale/github-action and GitHub Actions workflows, but names no repository file, test, or implementation entry point. Start by locating how the action selects and downloads Tailscale versions and how releases are coordinated; done would require a defined way for all platforms to share a usable version without platform-specific pins.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- github-actions
- Domain
- ci-cd, release
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 28/100