Skip to content

Commit

Permalink
chore, ci: Bump upload/download-artifacts to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Mar 18, 2024
1 parent 60f7a87 commit 4d0e9a4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Upload Test artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: solara-builds-${{ github.run_number }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
- uses: actions/checkout@v4
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: solara-builds-${{ github.run_number }}
- name: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: 3.7
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: solara-builds-${{ github.run_number }}
- name: Install build tools
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: solara-builds-${{ github.run_number }}
- name: Link solara app package
Expand Down Expand Up @@ -100,13 +100,13 @@ jobs:
run: pytest tests/integration --timeout=360 --video=retain-on-failure --output=test-results -vv -s --log-cli-level=warning
- name: Upload Test artifacts
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: test-results
- name: Upload CI package locks
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF' && github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ci-package-locks-integration-os${{ matrix.os }}-python${{ matrix.python-version }}-voila${{ matrix.voila }}-ipywidgets${{ matrix.ipywidgets }}
path: ${{ env.LOCK_FILE_LOCATION }}
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: solara-builds-${{ github.run_number }}
- name: Link solara app package
Expand Down Expand Up @@ -183,14 +183,14 @@ jobs:
run: pytest tests/integration/widget_test.py --timeout=360 --video=retain-on-failure --output=test-results -vv -s --log-cli-level=warning
- name: Upload Test artifacts
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
test-results
- name: Upload CI package locks
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF' && github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ci-package-locks-integration-vue3-os${{ matrix.os }}-voila${{ matrix.voila }}-ipywidgets${{ matrix.ipywidgets }}
path: ${{ env.LOCK_FILE_LOCATION }}
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
run: pytest tests/unit --doctest-modules --timeout=60
- name: Upload CI package locks
if: github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ci-package-locks-unit-os${{ matrix.os }}-python${{ matrix.python }}-ipywidgets${{ matrix.ipywidgets }}
path: ${{ env.LOCK_FILE_LOCATION }}
Expand All @@ -262,7 +262,7 @@ jobs:
- uses: actions/checkout@v4
- name: Remove previous CI package locks
run: rm -rf .ci-package-locks
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: ci-package-locks-*
- name: Update CI package locks
Expand Down

0 comments on commit 4d0e9a4

Please sign in to comment.