Skip to content

Commit

Permalink
Update publish workflow action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aracnid committed May 25, 2024
1 parent c1c3dcc commit 9b5a333
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install pypa/build
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -44,7 +44,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -61,7 +61,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "squaredown"
version = "1.6.0"
version = "1.6.1"
description = "Customized Square interface"
authors = ["Jason Romano <aracnid@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion squaredown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from squaredown.orders import Orders


__version__ = "1.6.0"
__version__ = "1.6.1"

0 comments on commit 9b5a333

Please sign in to comment.