Fix workflow: replace checkout action with native git commands
Some checks are pending
Compile apt-layer / compile (push) Waiting to run

This commit is contained in:
robojerk 2025-07-14 21:30:45 -07:00
parent a9a9264618
commit 3a33936cd4

View file

@ -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: |