Fix workflow: replace checkout action with native git commands
Some checks are pending
Compile apt-layer / compile (push) Waiting to run
Some checks are pending
Compile apt-layer / compile (push) Waiting to run
This commit is contained in:
parent
a9a9264618
commit
3a33936cd4
1 changed files with 5 additions and 1 deletions
|
|
@ -19,7 +19,11 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
run: |
|
||||
echo "Checking out repository..."
|
||||
git clone https://github.com/${{ github.repository }}.git .
|
||||
git checkout ${{ github.sha }}
|
||||
echo "Repository checked out successfully"
|
||||
|
||||
- name: Set up environment
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue