Skip to content

Commit 25cd1b2

Browse files
authored
fix workflows (#48)
1 parent b34f145 commit 25cd1b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Set up Python
1515
uses: actions/setup-python@v1
1616
with:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Build
2121
run: python -m build .
2222
- name: Publish
23-
uses: pypa/gh-action-pypi-publish@master
23+
uses: pypa/gh-action-pypi-publish@release/v1
2424
with:
2525
password: ${{ secrets.pypi_password }}
2626
skip_existing: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "asleep" # Required
1717
#
1818
# For a discussion on single-sourcing the version, see
1919
# https://packaging.python.org/guides/single-sourcing-package-version/
20-
version = "0.4.6" # Required
20+
version = "0.4.7" # Required
2121

2222
# This is a one-line description or tagline of what your project does. This
2323
# corresponds to the "Summary" metadata field:

0 commit comments

Comments
 (0)