Skip to content

Commit

Permalink
Update deprecated v3 -> v4 for upload-artifact and download-artifact (#…
Browse files Browse the repository at this point in the history
…507)

* Update deprecated v3 -> v4 for upload-artifact and download-artifact

* Try the plugins test on 3.11

* Try pyarrow on an earlier version
  • Loading branch information
jwills authored Feb 10, 2025
1 parent 2634221 commit a6fbe6b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: functional_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: filebased_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: motherduck_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: buenavista_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: fsspec_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand All @@ -358,7 +358,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9']
python-version: ['3.11']

env:
TOXENV: "plugins"
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: plugins_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down Expand Up @@ -429,7 +429,7 @@ jobs:
run: |
check-wheel-contents dist/*.whl --ignore W002,W007,W008
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -457,7 +457,7 @@ jobs:
run: |
pip install --upgrade wheel
pip --version
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
id: date
run: echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: unit_results_${{ matrix.python-version }}-${{ steps.date.outputs.date }}.csv
Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dbt-tests-adapter==1.10.4
boto3
mypy-boto3-glue
pandas
pyarrow
pyarrow==18.1.0
buenavista==0.5.0
bumpversion
flaky
Expand Down

0 comments on commit a6fbe6b

Please sign in to comment.