Update to 1.14.0, and slow down loop.

Wait half a second, to poll a bit less aggressively.

Signed-off-by: Denton Gentry <dgentry@tailscale.com>
This commit is contained in:
Denton Gentry 2021-08-25 09:33:20 -07:00
parent 107c46d8c6
commit 446d3fee99

View file

@ -10,7 +10,7 @@ inputs:
version:
description: 'Tailscale version to use.'
required: true
default: '1.12.3'
default: '1.14.0'
runs:
using: 'composite'
steps:
@ -40,5 +40,5 @@ runs:
HOSTNAME="github-$(cat /etc/hostname)"
until sudo tailscale up --authkey ${TAILSCALE_AUTHKEY} --hostname=${HOSTNAME} --accept-routes
do
sleep 0.25
sleep 0.5
done