Skip to content

Commit

Permalink
tests: upgrade outdated upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
mariobuikhuizen committed Nov 14, 2024
1 parent 9490c7b commit c63b26c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
if [[ $(ls -1 count | wc -l) -ne 3 ]]; then echo "Expected 4 files/directory"; exit 1; fi
- name: Upload builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ipyvue-dist-${{ github.run_number }}
path: |
Expand All @@ -80,7 +80,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ipyvue-dist-${{ github.run_number }}

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ipyvue-dist-${{ github.run_number }}

Expand All @@ -131,7 +131,7 @@ jobs:

- name: Upload Test artifacts
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ipyvue-test-results
path: test-results
Expand All @@ -140,7 +140,7 @@ jobs:
needs: [ test,ui-test,code-quality ]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ipyvue-dist-${{ github.run_number }}

Expand All @@ -164,7 +164,7 @@ jobs:
needs: [release-dry-run]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ipyvue-dist-${{ github.run_number }}

Expand Down

0 comments on commit c63b26c

Please sign in to comment.