Skip to content

Commit

Permalink
ci: Upgrade action versions
Browse files Browse the repository at this point in the history
This commit updates the "actions" used by the CI workflows to the latest
version.

Signed-off-by: Stephanos Ioannidis <[email protected]>
  • Loading branch information
stephanosio committed May 5, 2024
1 parent f457575 commit d8e6864
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

steps:
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.target.python }}
architecture: ${{ matrix.arch }}
Expand All @@ -93,7 +93,7 @@ jobs:
toolset: ${{ matrix.target.toolset }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -111,7 +111,7 @@ jobs:
pip install --user dist/${{ steps.build-wheel.outputs.filename }}
- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build-wheel.outputs.filename }}
path: dist/${{ steps.build-wheel.outputs.filename }}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifacts

Expand All @@ -29,7 +29,7 @@ jobs:
cp artifacts/*/*.whl assets
- name: Upload release assets
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
assets/*.whl
Expand All @@ -38,4 +38,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: assets/
packages-dir: assets/

0 comments on commit d8e6864

Please sign in to comment.