summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-05-25 16:55:02 +1000
committerGraham Dumpleton <Graham.Dumpleton@gmail.com>2022-05-25 16:55:02 +1000
commitc56635d6d3eff320d17297b4c971723509c32402 (patch)
treea24d1e6526229057eaa2079e0c22c15766cfc122
parenta8874832f3f08e6b12ae83eae6db6406fd3ddaff (diff)
downloadmod_wsgi-c56635d6d3eff320d17297b4c971723509c32402.tar.gz
Revert ubuntu version and try updating package repo details.
-rw-r--r--.github/workflows/main.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 1999eb8..5c9534c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -10,12 +10,14 @@ on:
jobs:
build:
name: "Build mod_wsgi packages"
- runs-on: "ubuntu-22.04"
+ runs-on: "ubuntu-20.04"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "3.9"
+ - name: "Update package details"
+ run: sudo apt --fix-missing update
- name: "Install Apache package"
run: sudo apt install -y apache2-dev
- name: "Build mod_wsgi packages"
@@ -28,7 +30,7 @@ jobs:
tests:
name: "Test mod_wsgi package (Python ${{ matrix.python-version }})"
- runs-on: "ubuntu-22.04"
+ runs-on: "ubuntu-20.04"
needs:
- build
strategy: