Skip to content

Commit

Permalink
action goes to @4
Browse files Browse the repository at this point in the history
  • Loading branch information
vzvyagintsev committed Jun 19, 2024
1 parent 774c007 commit 14e1a02
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ inputs.py_version }}
- name: Install dependencies
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Store dist for 2w
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: CrossPM packages
path: dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
needs: build-packages
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: CrossPM packages
path: dist/
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@release/v4
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- '3.11'

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 14e1a02

Please sign in to comment.