Skip to content

Commit

Permalink
ci: Fix git lfs installation (#2080)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed May 3, 2023
1 parent 1f234e9 commit 2a9c039
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
ACTS_LOG_FAILURE_THRESHOLD: WARNING
steps:
- name: Install git lfs
run: apt-get install -y git-lfs
run: apt-get update && apt-get install -y git-lfs

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
needs: [linux_ubuntu]
steps:
- name: Install git lfs
run: apt-get install -y git-lfs
run: apt-get update && apt-get install -y git-lfs

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

steps:
- name: Install git lfs
run: apt-get install -y git-lfs
run: apt-get update && apt-get install -y git-lfs

- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
ACTS_LOG_FAILURE_THRESHOLD: WARNING
steps:
- name: Install git lfs
run: apt-get install -y git-lfs
run: apt-get update && apt-get install -y git-lfs

- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 2a9c039

Please sign in to comment.