Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -435,37 +435,37 @@ jobs:
rm -rf master/git && mkdir master/git

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

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

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

- name: Download preview site artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: site-preview
path: master/preview

- name: Download test fixture docs artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: test-fixture-docs
path: master/test-fixtures/docs

- name: Download Git history graph artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: git-history-graph
path: master/git
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,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@v5
uses: actions/download-artifact@v7
with:
name: dusk-source
path: _site

- name: Download app.css
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: app.css
path: _site/media
Expand Down