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
16 changes: 8 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
uses: actions/checkout@v5
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.d
path: dist.d
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
echo "::endgroup::"
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.node
path: dist.node
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
echo "::endgroup::"
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.node
path: dist.node
Expand Down Expand Up @@ -294,7 +294,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 Expand Up @@ -332,7 +332,7 @@ jobs:
package-manager-cache: false
- name: fetch build artifact 'node'
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.node
path: dist.node
Expand Down Expand Up @@ -384,13 +384,13 @@ jobs:
package-manager-cache: false
- name: fetch build artifact 'd'
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.d
path: dist.d
- name: fetch build artifact 'node'
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.node
path: dist.node
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
package-manager-cache: false
- name: fetch build artifact 'node'
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist.web
path: dist.web
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,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