Skip to content

Commit 31b00fb

Browse files
committed
fix deprecated github actions steps
1 parent f4fb81e commit 31b00fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
WITH_PANDAS: [false, true]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python setup.py sdist bdist_wheel
3434
3535
- name: Store the distribution packages
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: python-package-distributions
3939
path: dist/
@@ -52,7 +52,7 @@ jobs:
5252
id-token: write
5353
steps:
5454
- name: Download all the dists
55-
uses: actions/download-artifact@v3
55+
uses: actions/download-artifact@v4
5656
with:
5757
name: python-package-distributions
5858
path: dist/

0 commit comments

Comments
 (0)