-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Tailscale default version to 1.66.4 #95
base: main
Are you sure you want to change the base?
Conversation
It's 1.66.4 now. |
Hi @evenh , could you update this to use the latest |
Bumped! |
Does it make sense to configure Renovate to update the version automatically? |
I would love that but it is up to the maintainers to decide. I hope they say yes in order to ensure that consumers are up to date. See #28 (comment) |
I haven't seen the comment you linked before, it seems reasonable to me. The workaround is quite simple. In our workflows we currently use the following step to connect to the tailnet: jobs:
some-job:
steps:
- name: 'Tailscale'
uses: 'tailscale/github-action@4e4c49acaa9818630ce0bd7a564372c17e33fb4d' # v2.0.0
env:
# See https://docs.renovatebot.com/presets-customManagers/#custommanagersgithubactionsversions
# renovate: datasource=github-releases depName=tailscale/tailscale
TAILSCALE_VERSION: '1.66.4'
with:
authkey: '${{ secrets.TAILSCALE_AUTHKEY }}'
version: '${{ env.TAILSCALE_VERSION }}' With the following bit in the renovate config: {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["regexManagers:githubActionsVersions"]
} The |
I noticed that the default version was out of date, hence this PR.