From 2cbc2550a7562d29eebca62f6d3bf88c424d37d1 Mon Sep 17 00:00:00 2001 From: Nick O'Neill Date: Wed, 18 Dec 2024 13:48:32 -0800 Subject: [PATCH] add v3 to the readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b7ee7c9..52a29b3 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ by adding a step to your workflow. ```yaml - name: Tailscale - uses: tailscale/github-action@v2 + uses: tailscale/github-action@v3 with: oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} @@ -43,7 +43,7 @@ Lock](https://tailscale.com/kb/1226/tailnet-lock) enabled network, you need to: ```yaml - name: Tailscale - uses: tailscale/github-action@v2 + uses: tailscale/github-action@v3 with: authkey: tskey-auth-... statedir: /tmp/tailscale-state/ @@ -55,7 +55,7 @@ Which Tailscale version to use can be set like this: ```yaml - name: Tailscale - uses: tailscale/github-action@v2 + uses: tailscale/github-action@v3 with: oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} @@ -67,7 +67,7 @@ If you'd like to specify the latest version, simply set the version as `latest` ```yaml - name: Tailscale - uses: tailscale/github-action@v2 + uses: tailscale/github-action@v3 with: oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}