Skip to content

Commit

Permalink
github_actions: upgrade actions to version v4
Browse files Browse the repository at this point in the history
  • Loading branch information
ader1990 committed Nov 3, 2023
1 parent a0dbed1 commit 77e1f71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pymi-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test and build PyMI
Expand All @@ -26,7 +26,7 @@ jobs:
pip install . || exit /b
nosetests wmi || exit /b
python setup.py bdist_wheel || exit /b
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: pymi_wheel_py${{ matrix.python-version }}
path: 'dist'

0 comments on commit 77e1f71

Please sign in to comment.