Skip to content

Commit

Permalink
Increment version numbers in CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer committed Mar 7, 2024
1 parent d280414 commit 91bb80b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Fish
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Check for release
if: github.ref == 'refs/heads/main'
run: |
python -m pip install githubrelease httpx==0.16.1 autopub
python -m pip install githubrelease httpx==0.18.2 autopub
echo "##[set-output name=release;]$(autopub check)"
id: check_release
- name: Deploy
Expand Down

0 comments on commit 91bb80b

Please sign in to comment.