Skip to content

Commit

Permalink
use v4 artifact actions ahead of EOL (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
aronatkins authored Dec 11, 2024
1 parent 395861b commit d92a663
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
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

0 comments on commit d92a663

Please sign in to comment.