mirror of
https://github.com/actions/checkout.git
synced 2025-04-04 15:30:05 +02:00
Clarify Changes in the docs
This commit is contained in:
parent
4817b449b0
commit
eed9f98335
1 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# Checkout V2 beta
|
# 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.
|
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
|
## Checkout a different branch
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@preview
|
- uses: actions/checkout@v2-beta
|
||||||
with:
|
with:
|
||||||
ref: some-branch
|
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
|
## Checkout a different, private repository
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: actions/checkout@preview
|
- uses: actions/checkout@v2-beta
|
||||||
with:
|
with:
|
||||||
repository: myAccount/myRepository
|
repository: myAccount/myRepository
|
||||||
ref: refs/heads/master
|
ref: refs/heads/master
|
||||||
|
|
Loading…
Add table
Reference in a new issue