Skip to content

Commit 623bc15

Browse files
committed
💚 Stop installing CUrl headers
Signed-off-by: Peter Boling <[email protected]>
1 parent 8dc0d8e commit 623bc15

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
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@v2
41+
uses: actions/checkout@v3
4242

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

.github/workflows/danger.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ jobs:
1616
- 2.6
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
20-
- name: Install cURL Headers
21-
run: sudo apt-get install libcurl4-openssl-dev
19+
uses: actions/checkout@v3
2220
- name: Setup Ruby & Bundle
2321
uses: ruby/setup-ruby@v1
2422
with:

.github/workflows/style.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v2
28-
- name: Install cURL Headers
29-
run: sudo apt-get install libcurl4-openssl-dev
27+
uses: actions/checkout@v3
3028
- name: Setup Ruby & Bundle
3129
uses: ruby/setup-ruby@v1
3230
with:

.github/workflows/supported.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ jobs:
3434
with:
3535
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}
3636
- name: Checkout
37-
uses: actions/checkout@v2
38-
- name: Install cURL Headers
39-
run: sudo apt-get install libcurl4-openssl-dev
37+
uses: actions/checkout@v3
4038
- name: Setup Ruby & Bundle
4139
uses: ruby/setup-ruby@v1
4240
with:

.github/workflows/unsupported.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ jobs:
2828
continue-on-error: ${{ matrix.allow_failure || endsWith(matrix.ruby, 'head') }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v2
32-
- name: Install cURL Headers
33-
run: sudo apt-get install libcurl4-openssl-dev
31+
uses: actions/checkout@v3
3432
- name: Setup Ruby & Bundle
3533
uses: ruby/setup-ruby@v1
3634
with:

0 commit comments

Comments
 (0)