From 815aff28efdc5ee17def28760953f1b2bd0bf79d Mon Sep 17 00:00:00 2001 From: Alex Tomkins Date: Mon, 8 Jul 2024 00:19:25 +0100 Subject: [PATCH 1/2] Update GitHub Actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdce3bd..479648a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,13 +7,13 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.5' - name: Python pip cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }} From dce3587d53033a34174e5f0da82cadf7e0344f88 Mon Sep 17 00:00:00 2001 From: Alex Tomkins Date: Mon, 8 Jul 2024 00:41:43 +0100 Subject: [PATCH 2/2] Set PIP_CERT --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 479648a..557064a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.5' + env: + PIP_CERT: /etc/ssl/certs/ca-certificates.crt - name: Python pip cache uses: actions/cache@v4 with: