Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
npm i --ignore-scripts --loglevel=silly --no-save $dev_requirements
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
npm rebuild --loglevel=silly libxmljs2 || npm uninstall --no-save libxmljs2 || true
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
steps:
- name: fetch test artifacts
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-ls_demo-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
steps:
- name: fetch and combine RESULTS
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: '${{ env.RESULTS_ARTIFACT }}_*'
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
steps:
- name: fetch release result
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.PACKED_ARTIFACT }}
path: ${{ env.ASSETS_DIR }}
Expand Down
Loading