Skip to content

Commit

Permalink
Setting actions version to latest (#130)
Browse files Browse the repository at this point in the history
* Setting actions version to latest

* fixing action version
  • Loading branch information
wallentx authored Jan 25, 2023
1 parent 480b328 commit 389f6c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
# we need fetch-depth 0 so setuptools_scm can resolve tags
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
git fetch origin +refs/tags/*:refs/tags/*
- name: Set up Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install pep517
Expand All @@ -44,6 +44,6 @@ jobs:
.
- name: Publish distribution to PyPI
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}

0 comments on commit 389f6c3

Please sign in to comment.