Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use v4 artifact actions ahead of EOL #621

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: pip freeze
- run: make dist
id: create_dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: distributions
path: dist/
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
docker compose --profile rsconnect build

- name: Restore dist
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: distributions
path: dist/
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

# Videos are captured whether the suite fails or passes
- name: Save videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-videos_${{ matrix.PY_VERSION }}_native
Expand All @@ -102,7 +102,7 @@ jobs:

# Screenshots are only captured on failure
- name: Save screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots_${{ matrix.PY_VERSION }}_native
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- run: pip freeze
- run: make dist
id: create_dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: distributions
path: dist/
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
python-version: 3.8.x
- run: pip freeze
- run: make docs
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: docs
path: docs/site/
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:

# Videos are captured whether the suite fails or passes
- name: Save videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: cypress-videos
Expand All @@ -243,7 +243,7 @@ jobs:

# Screenshots are only captured on failure
- name: Save screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
docker compose --profile rsconnect build

- name: Restore dist
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: distributions
path: dist/
Expand All @@ -316,7 +316,7 @@ jobs:

# Videos are captured whether the suite fails or passes
- name: Save videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-videos_${{ matrix.PY_VERSION }}_native
Expand All @@ -325,7 +325,7 @@ jobs:

# Screenshots are only captured on failure
- name: Save screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots_${{ matrix.PY_VERSION }}_native
Expand Down
Loading