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

Bump actions/download-artifact from 2 to 4 #1671

Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,31 +449,31 @@ jobs:
rm -rf master/test-fixtures && mkdir master/test-fixtures

- name: Download coverage report artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: html-coverage
path: master/coverage

- name: Download upcoming documentation artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dev-docs
path: master/dev-docs

- name: Download API documentation artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: api-documentation
path: master/api-docs

- name: Download preview site artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: site-preview
path: master/preview

- name: Download test fixture docs artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test-fixture-docs
path: master/test-fixtures/docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'run-visual-tests') || github.event_name == 'push'
steps:
- name: Download Dusk generated pages
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: dusk-source
path: _site

- name: Download app.css
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: app.css
path: _site/media
Expand Down
Loading