Skip to content

Commit

Permalink
upgrade action versions, use ubuntu-20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Jan 3, 2023
1 parent f693858 commit 62021b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Python Test, Build and Publish
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8']
steps:
- uses: actions/checkout@v2
- 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 dependencies
Expand All @@ -27,9 +27,9 @@ jobs:
needs: build
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Publish to PyPi
Expand Down

0 comments on commit 62021b7

Please sign in to comment.