Skip to content

Commit 72e9032

Browse files
committed
💚 Install CUrl headers
Signed-off-by: Peter Boling <[email protected]>
1 parent 623bc15 commit 72e9032

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v2
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/danger.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v3
20+
- name: Install cURL Headers
21+
run: |
22+
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
2023
- name: Setup Ruby & Bundle
2124
uses: ruby/setup-ruby@v1
2225
with:

.github/workflows/style.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v3
28+
- name: Install cURL Headers
29+
run: |
30+
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
2831
- name: Setup Ruby & Bundle
2932
uses: ruby/setup-ruby@v1
3033
with:

.github/workflows/supported.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}
3636
- name: Checkout
3737
uses: actions/checkout@v3
38+
- name: Install cURL Headers
39+
run: |
40+
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
3841
- name: Setup Ruby & Bundle
3942
uses: ruby/setup-ruby@v1
4043
with:

.github/workflows/unsupported.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v3
32+
- name: Install cURL Headers
33+
run: |
34+
sudo apt-get -y install libcurl4 libcurl3-gnutls libcurl4-openssl-dev
3235
- name: Setup Ruby & Bundle
3336
uses: ruby/setup-ruby@v1
3437
with:

0 commit comments

Comments
 (0)