Skip to content

Commit fbaeffc

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 c184541 commit fbaeffc

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 }}
@@ -248,7 +248,7 @@ jobs:
248248
- name: artifact test reports
249249
if: ${{ ! cancelled() }}
250250
# see https://github.com/actions/upload-artifact
251-
uses: actions/upload-artifact@v6
251+
uses: actions/upload-artifact@v7
252252
with:
253253
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_regular_${{ matrix.os }}_node${{ matrix.node-version }}'
254254
path: ${{ env.REPORTS_DIR }}
@@ -297,7 +297,7 @@ jobs:
297297
- name: artifact test reports
298298
if: ${{ ! cancelled() }}
299299
# see https://github.com/actions/upload-artifact
300-
uses: actions/upload-artifact@v6
300+
uses: actions/upload-artifact@v7
301301
with:
302302
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_no-opt_${{ matrix.os }}_node${{ matrix.node-version }}'
303303
path: ${{ env.REPORTS_DIR }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
npm pack --pack-destination "$PACKED_DIR"
145145
- name: artifact release result
146146
# see https://github.com/actions/upload-artifact
147-
uses: actions/upload-artifact@v6
147+
uses: actions/upload-artifact@v7
148148
with:
149149
name: ${{ env.PACKED_ARTIFACT }}
150150
path: ${{ env.PACKED_DIR }}/

0 commit comments

Comments
 (0)