Skip to content

Commit

Permalink
Update workflow versions in publish_pypi (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
teutoburg authored Sep 7, 2024
2 parents 826fc15 + 926ea23 commit ff7168e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Set up Poetry
uses: abatilo/actions-poetry@v2
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.7.1"
poetry-version: "1.8.3"

- name: Create step summary
run: echo "## Building $(poetry version)" >> $GITHUB_STEP_SUMMARY
Expand All @@ -29,7 +29,7 @@ jobs:
run: poetry build >> $GITHUB_STEP_SUMMARY

- name: Store distribution files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: distribution
path: dist/
Expand All @@ -54,14 +54,14 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Set up Poetry
uses: abatilo/actions-poetry@v2
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.7.1"
poetry-version: "1.8.3"

- name: Create step summary
run: echo "## Publishing $(poetry version) to PyPI" >> $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit ff7168e

Please sign in to comment.