Skip to content

Commit

Permalink
chore: fix github release and test actions
Browse files Browse the repository at this point in the history
[PR 52](#52) is failing
because latest Ubuntu image no longer supports Python 3.6, which is
installed on WoC servers. Fixing Ubuntu version to 20.04 should fix that
  • Loading branch information
user2589 committed May 29, 2023
1 parent 2ea7d6c commit 9209218
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
pypi_token: ${{ secrets.PYPI_TOKEN }}

pages:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
test:
name: Python ${{ matrix.python-version }} tests
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

strategy:
matrix:
Expand Down

0 comments on commit 9209218

Please sign in to comment.