fix deprecated github actions steps

This commit is contained in:
Cameron Yick
2025-04-05 10:29:16 -04:00
parent f4fb81ee84
commit 31b00fba3c
2 changed files with 4 additions and 4 deletions

View File

@@ -19,9 +19,9 @@ jobs:
WITH_PANDAS: [false, true]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies

View File

@@ -33,7 +33,7 @@ jobs:
python setup.py sdist bdist_wheel
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
@@ -52,7 +52,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/