Skip to content

Commit

Permalink
MAINT: Update versions of Github actions
Browse files Browse the repository at this point in the history
Switching from ubuntu-latest to ubuntu-20.04:

* ubuntu-latest does NOT have Python 3.6 anymore
* ubuntu-20.04 has Python 3.6
* Ubuntu 20.04 is an LTS version
  • Loading branch information
MartinThoma committed Feb 26, 2023
1 parent 35298b5 commit e08e927
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install camelot with dependencies
Expand All @@ -31,9 +31,9 @@ jobs:
python-version: [3.9]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install camelot with dependencies
Expand Down

0 comments on commit e08e927

Please sign in to comment.