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
16 changes: 8 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: yarn run build:bundle-dev
- name: artifact build result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.BUNDLES_DIR }}
path: ${{ env.BUNDLES_DIR }}
Expand All @@ -62,7 +62,7 @@ jobs:
run: yarn run make-dist
- name: artifact build result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
eslint-report: ${{ env.REPORTS_DIR }}/eslint.json
- name: artifact eslint result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ failure() }}
with:
name: ${{ env.STANDARD_REPORTS_ARTIFACT }}
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
uses: actions/checkout@v6
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
run: yarn run setup-tests
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.BUNDLES_DIR }}
path: ${{ env.BUNDLES_DIR }}
Expand All @@ -243,7 +243,7 @@ jobs:
- name: artifact test reports
if: ${{ ! cancelled() }}
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_${{ matrix.os }}_node${{ matrix.node-version }}'
path: ${{ env.REPORTS_DIR }}
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
run: yarn install --no-immutable # we might be changing yarn version for tests -- require to ignore lock
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.BUILD_DIR }}
path: ${{ env.BUILD_DIR }}
Expand All @@ -312,7 +312,7 @@ jobs:
steps:
- name: fetch test artifacts
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
merge-multiple: true
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
run: yarn run build
- name: artifact build result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.BUNDLES_DIR }}
path: ${{ env.BUNDLES_DIR }}
Expand All @@ -128,7 +128,7 @@ jobs:
run: yarn run make-dist
- name: artifact build result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand All @@ -148,7 +148,7 @@ jobs:
ref: ${{ needs.bump.outputs.version }}
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
run: yarn run setup-tests
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.BUNDLES_DIR }}
path: ${{ env.BUNDLES_DIR }}
Expand All @@ -206,7 +206,7 @@ jobs:
steps:
- name: fetch build artifact
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.DIST_DIR }}
path: .
Expand All @@ -232,7 +232,7 @@ jobs:
yarn pack --out "$PACKED_DIR"/%s-%v.tgz
- name: artifact release result
# see https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ env.PACKED_DIR }}
path: ${{ env.PACKED_DIR }}/
Expand All @@ -253,13 +253,13 @@ jobs:
steps:
- name: fetch packages
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.PACKED_DIR }}
path: ${{ env.PACKED_DIR }}
- name: fetch dist
# see https://github.com/actions/download-artifact
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ env.DIST_DIR }}
path: ${{ env.DIST_DIR }}
Expand Down
Loading