Skip to content

Commit 3179a78

Browse files
authored
Update git-lfs installation commands in workflow
1 parent 3658c8d commit 3179a78

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/feedback-worker.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ jobs:
3030

3131
- name: Install git-lfs
3232
run: |
33-
apt update
34-
apt upgrade
35-
apt install git-lfs
33+
sudo apt-get update
34+
sudo apt-get upgrade -y
35+
sudo apt-get install -y git-lfs
3636
git lfs install
37-
apt clean
37+
sudo apt-get clean
38+
sudo rm -rf /var/lib/apt/lists/*
39+
3840
- name: Set up Python
3941
uses: actions/setup-python@v5
4042
with:

0 commit comments

Comments
 (0)