Skip to content

Commit 6d48c72

Browse files
authored
Install CA certificates in GitHub Actions workflow
Added installation of CA certificates in workflow.
1 parent 1bf8209 commit 6d48c72

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ jobs:
1717
uses: actions/setup-python@v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
20+
- name: Install CA Certificates
21+
run: |
22+
sudo apt-get update
23+
sudo apt-get install -y ca-certificates
24+
sudo update-ca-certificates
2025
- name: Install dependencies
2126
run: |
2227
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)