Skip to content

Commit

Permalink
Fixed CI by pinning runner version
Browse files Browse the repository at this point in the history
fixes pulp#589
  • Loading branch information
mdellweg committed Nov 7, 2022
1 parent da5f7b8 commit b7a30a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Lint code
run: make lint
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs:
- lint
strategy:
Expand Down Expand Up @@ -77,19 +77,14 @@ jobs:
run: .ci/run_container.sh make test
ready-to-ship:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.10"
steps:
- uses: actions/checkout@v3
- run: |
git fetch --prune --unshallow
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
python-version: "3.10"
- name: Install python dependencies
run: |
pip install pygithub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions CHANGES/589.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Switched CI runner to ubuntu-20.04 for older versions of python.

0 comments on commit b7a30a9

Please sign in to comment.