Skip to content

Commit 48c6d03

Browse files
committed
action,dist,src: bump default version to 1.94.2
Bump default version used by the action to 1.94.2. This will resolve warnings in the admin console about known security vulnerabilities in the previous default of 1.90.4 which aren't applicable for the GitHub action. The security vulnerabilities are specifically related to MDM policies for MacOS (see https://tailscale.com/security-bulletins#ts-2026-001) and related to using Tailnet lock without passing `--statedir` or `--state` to tailscaled (see https://tailscale.com/security-bulletins#ts-2025-008). Neither of these impact the GitHub action as MacOS runners aren't managed by MDM policies and we pass either `--statedir` or `--state` to the tailscale daemon. Fixes #272 Signed-off-by: Mario Minardi <mario@tailscale.com>
1 parent cfed5b8 commit 48c6d03

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
version:
2828
description: 'Tailscale version to use. Specify `latest` to use the latest stable version, and `unstable` to use the latest development version.'
2929
required: true
30-
default: '1.90.4'
30+
default: '1.94.2'
3131
args:
3232
description: 'Optional additional arguments to `tailscale up`.'
3333
required: false

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ async function getInputs(): Promise<TailscaleConfig> {
220220
}
221221

222222
const config = {
223-
version: core.getInput("version") || "1.90.4",
223+
version: core.getInput("version") || "1.94.2",
224224
resolvedVersion: "",
225225
arch: "",
226226
authKey: authKey,

0 commit comments

Comments
 (0)