From eed9f98335e3631710ef8faab6e9ad93ff5147bd Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Wed, 4 Dec 2019 09:18:35 -0500 Subject: [PATCH] Clarify Changes in the docs --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8d1493..9ec06f1 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@

# Checkout V2 beta +The Checkout V2 beta is now available! You have automatically upgraded if you bound to the `master` branch. If you did not mean to upgrade, please bind to `uses: actions/checkout@v1`. Please see the [action versioning docs](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md) for more information. This action checks-out your repository under `$GITHUB_WORKSPACE`, so your workflow can access it. @@ -66,7 +67,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous ## Checkout a different branch ```yaml -- uses: actions/checkout@preview +- uses: actions/checkout@v2-beta with: ref: some-branch ``` @@ -74,7 +75,7 @@ Refer [here](https://github.com/actions/checkout/blob/v1/README.md) for previous ## Checkout a different, private repository ```yaml -- uses: actions/checkout@preview +- uses: actions/checkout@v2-beta with: repository: myAccount/myRepository ref: refs/heads/master