Skip to content

Commit bd21c0e

Browse files
chore(deps): bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 397ab83 commit bd21c0e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: npm run build:${{ matrix.target }}
5555
- name: artifact build result
5656
# see https://github.com/actions/upload-artifact
57-
uses: actions/upload-artifact@v6
57+
uses: actions/upload-artifact@v7
5858
with:
5959
name: dist.${{ matrix.target }}
6060
path: dist.${{ matrix.target }}
@@ -128,7 +128,7 @@ jobs:
128128
eslint-report: ${{ env.REPORTS_DIR }}/eslint.json
129129
- name: artifact eslint result
130130
# see https://github.com/actions/upload-artifact
131-
uses: actions/upload-artifact@v6
131+
uses: actions/upload-artifact@v7
132132
if: ${{ failure() }}
133133
with:
134134
name: ${{ env.STANDARD_REPORTS_ARTIFACT }}
@@ -242,7 +242,7 @@ jobs:
242242
- name: artifact test reports
243243
if: ${{ ! cancelled() }}
244244
# see https://github.com/actions/upload-artifact
245-
uses: actions/upload-artifact@v6
245+
uses: actions/upload-artifact@v7
246246
with:
247247
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_regular_${{ matrix.os }}_node${{ matrix.node-version }}'
248248
path: ${{ env.REPORTS_DIR }}
@@ -291,7 +291,7 @@ jobs:
291291
- name: artifact test reports
292292
if: ${{ ! cancelled() }}
293293
# see https://github.com/actions/upload-artifact
294-
uses: actions/upload-artifact@v6
294+
uses: actions/upload-artifact@v7
295295
with:
296296
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_no-opt_${{ matrix.os }}_node${{ matrix.node-version }}'
297297
path: ${{ env.REPORTS_DIR }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
npm pack --pack-destination "$PACKED_DIR"
153153
- name: artifact release result
154154
# see https://github.com/actions/upload-artifact
155-
uses: actions/upload-artifact@v6
155+
uses: actions/upload-artifact@v7
156156
with:
157157
name: ${{ env.PACKED_ARTIFACT }}
158158
path: ${{ env.PACKED_DIR }}/

0 commit comments

Comments
 (0)