Skip to content

Commit 8ced339

Browse files
committed
💚 Install libcurl with --fix-missing
Signed-off-by: Peter Boling <[email protected]>
1 parent 72e9032 commit 8ced339

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v3
2020
- name: Install cURL Headers
2121
run: |
22-
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
22+
sudo apt-get -y --fix-missing install libcurl4-openssl-dev
2323
- name: Setup Ruby & Bundle
2424
uses: ruby/setup-ruby@v1
2525
with:

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v3
2828
- name: Install cURL Headers
2929
run: |
30-
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
30+
sudo apt-get -y --fix-missing install libcurl4-openssl-dev
3131
- name: Setup Ruby & Bundle
3232
uses: ruby/setup-ruby@v1
3333
with:

.github/workflows/supported.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v3
3838
- name: Install cURL Headers
3939
run: |
40-
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
40+
sudo apt-get -y --fix-missing install libcurl4-openssl-dev
4141
- name: Setup Ruby & Bundle
4242
uses: ruby/setup-ruby@v1
4343
with:

.github/workflows/unsupported.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v3
3232
- name: Install cURL Headers
3333
run: |
34-
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
34+
sudo apt-get -y --fix-missing install libcurl4-openssl-dev
3535
- name: Setup Ruby & Bundle
3636
uses: ruby/setup-ruby@v1
3737
with:

0 commit comments

Comments
 (0)