mirror of
https://github.com/actions/checkout.git
synced 2025-11-01 21:31:56 +02:00
Persist creds to a separate file
This commit is contained in:
parent
ff7abcd0c3
commit
cb17bfb94d
8 changed files with 1060 additions and 149 deletions
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
|
|
@ -302,12 +302,15 @@ jobs:
|
|||
# Clone this repo
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.1.6
|
||||
with:
|
||||
path: actions-checkout
|
||||
|
||||
# Basic checkout using git
|
||||
- name: Checkout basic
|
||||
id: checkout
|
||||
uses: ./
|
||||
uses: ./actions-checkout
|
||||
with:
|
||||
path: cloned-using-local-action
|
||||
ref: test-data/v2/basic
|
||||
|
||||
# Verify output
|
||||
|
|
@ -325,7 +328,3 @@ jobs:
|
|||
echo "Expected commit to be 82f71901cf8c021332310dcc8cdba84c4193ff5d"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# needed to make checkout post cleanup succeed
|
||||
- name: Fix Checkout
|
||||
uses: actions/checkout@v4.1.6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue