Skip to content

Commit bf047d3

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 69ac857 commit bf047d3

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 }}
@@ -238,7 +238,7 @@ jobs:
238238
- name: artifact test reports
239239
if: ${{ ! cancelled() }}
240240
# see https://github.com/actions/upload-artifact
241-
uses: actions/upload-artifact@v6
241+
uses: actions/upload-artifact@v7
242242
with:
243243
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_regular_${{ matrix.os }}_node${{ matrix.node-version }}'
244244
path: ${{ env.REPORTS_DIR }}
@@ -287,7 +287,7 @@ jobs:
287287
- name: artifact test reports
288288
if: ${{ ! cancelled() }}
289289
# see https://github.com/actions/upload-artifact
290-
uses: actions/upload-artifact@v6
290+
uses: actions/upload-artifact@v7
291291
with:
292292
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_no-opt_${{ matrix.os }}_node${{ matrix.node-version }}'
293293
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)