Skip to content

Commit

Permalink
fix: install git via sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenli86 committed Feb 15, 2025
1 parent 819f55a commit 3c920a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
steps:
# 🔧 Install Git (Needed for actions/checkout)
- name: Install Git
run: apt-get update && apt-get install -y git
run: |
sudo apt-get update
sudo apt-get install -y git
# Check out repository with all submodules for complete codebase access.
- uses: actions/checkout@v4
Expand Down

0 comments on commit 3c920a6

Please sign in to comment.