Skip to content

Commit 68ad250

Browse files
committed
🤖 Update CI actions to v3
1 parent 586af96 commit 68ad250

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

‎.github/workflows/cmake.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
python-version: [3.8]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v3
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

‎.github/workflows/python.yml‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
name: python source distribution
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Set up Python 3.8
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v3
1919
with:
2020
python-version: 3.8
2121

@@ -33,7 +33,7 @@ jobs:
3333
- name: run pytest
3434
run: pytest tests/
3535

36-
- uses: actions/upload-artifact@v2
36+
- uses: actions/upload-artifact@v3
3737
if: ${{ startsWith(github.ref, 'refs/tags') }}
3838
with:
3939
path: ./dist/*.tar.gz
@@ -49,9 +49,9 @@ jobs:
4949
python-version: [3.8]
5050

5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v3
5353

54-
- uses: actions/setup-python@v2
54+
- uses: actions/setup-python@v3
5555
name: Install Python
5656
with:
5757
python-version: ${{ matrix.python-version }}
@@ -71,7 +71,7 @@ jobs:
7171
- name: run pytests
7272
run: pytest tests
7373

74-
- uses: actions/upload-artifact@v2
74+
- uses: actions/upload-artifact@v3
7575
if: ${{ startsWith(github.ref, 'refs/tags') }}
7676
with:
7777
path: ./dist/*.whl
@@ -84,7 +84,7 @@ jobs:
8484
needs: [build_wheels, from-sdist]
8585
steps:
8686
- name: Download wheels and sdist
87-
uses: actions/download-artifact@v2
87+
uses: actions/download-artifact@v3
8888

8989
- name: Move wheels and source distribution to dist/
9090
run: |

0 commit comments

Comments
 (0)