Skip to content

Commit 9b64c09

Browse files
chore(deps): update github artifact actions (major) (#451)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v6` -> `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/download-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v6...v7) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/CycloneDX/cyclonedx-node-yarn). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 79ee8af commit 9b64c09

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/nodejs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: yarn run build:bundle-dev
5353
- name: artifact build result
5454
# see https://github.com/actions/upload-artifact
55-
uses: actions/upload-artifact@v5
55+
uses: actions/upload-artifact@v6
5656
with:
5757
name: ${{ env.BUNDLES_DIR }}
5858
path: ${{ env.BUNDLES_DIR }}
@@ -62,7 +62,7 @@ jobs:
6262
run: yarn run make-dist
6363
- name: artifact build result
6464
# see https://github.com/actions/upload-artifact
65-
uses: actions/upload-artifact@v5
65+
uses: actions/upload-artifact@v6
6666
with:
6767
name: ${{ env.DIST_DIR }}
6868
path: ${{ env.DIST_DIR }}
@@ -104,7 +104,7 @@ jobs:
104104
eslint-report: ${{ env.REPORTS_DIR }}/eslint.json
105105
- name: artifact eslint result
106106
# see https://github.com/actions/upload-artifact
107-
uses: actions/upload-artifact@v5
107+
uses: actions/upload-artifact@v6
108108
if: ${{ failure() }}
109109
with:
110110
name: ${{ env.STANDARD_REPORTS_ARTIFACT }}
@@ -172,7 +172,7 @@ jobs:
172172
uses: actions/checkout@v6
173173
- name: fetch build artifact
174174
# see https://github.com/actions/download-artifact
175-
uses: actions/download-artifact@v6
175+
uses: actions/download-artifact@v7
176176
with:
177177
name: ${{ env.DIST_DIR }}
178178
path: ${{ env.DIST_DIR }}
@@ -219,7 +219,7 @@ jobs:
219219
run: yarn run setup-tests
220220
- name: fetch build artifact
221221
# see https://github.com/actions/download-artifact
222-
uses: actions/download-artifact@v6
222+
uses: actions/download-artifact@v7
223223
with:
224224
name: ${{ env.BUNDLES_DIR }}
225225
path: ${{ env.BUNDLES_DIR }}
@@ -234,7 +234,7 @@ jobs:
234234
- name: artifact test reports
235235
if: ${{ ! cancelled() }}
236236
# see https://github.com/actions/upload-artifact
237-
uses: actions/upload-artifact@v5
237+
uses: actions/upload-artifact@v6
238238
with:
239239
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_${{ matrix.os }}_node${{ matrix.node-version }}'
240240
path: ${{ env.REPORTS_DIR }}
@@ -285,7 +285,7 @@ jobs:
285285
run: yarn install --no-immutable # we might be changing yarn version for tests -- require to ignore lock
286286
- name: fetch build artifact
287287
# see https://github.com/actions/download-artifact
288-
uses: actions/download-artifact@v6
288+
uses: actions/download-artifact@v7
289289
with:
290290
name: ${{ env.BUILD_DIR }}
291291
path: ${{ env.BUILD_DIR }}
@@ -303,7 +303,7 @@ jobs:
303303
steps:
304304
- name: fetch test artifacts
305305
# see https://github.com/actions/download-artifact
306-
uses: actions/download-artifact@v6
306+
uses: actions/download-artifact@v7
307307
with:
308308
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
309309
merge-multiple: true

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
run: yarn run build
119119
- name: artifact build result
120120
# see https://github.com/actions/upload-artifact
121-
uses: actions/upload-artifact@v5
121+
uses: actions/upload-artifact@v6
122122
with:
123123
name: ${{ env.BUNDLES_DIR }}
124124
path: ${{ env.BUNDLES_DIR }}
@@ -128,7 +128,7 @@ jobs:
128128
run: yarn run make-dist
129129
- name: artifact build result
130130
# see https://github.com/actions/upload-artifact
131-
uses: actions/upload-artifact@v5
131+
uses: actions/upload-artifact@v6
132132
with:
133133
name: ${{ env.DIST_DIR }}
134134
path: ${{ env.DIST_DIR }}
@@ -148,7 +148,7 @@ jobs:
148148
ref: ${{ needs.bump.outputs.version }}
149149
- name: fetch build artifact
150150
# see https://github.com/actions/download-artifact
151-
uses: actions/download-artifact@v6
151+
uses: actions/download-artifact@v7
152152
with:
153153
name: ${{ env.DIST_DIR }}
154154
path: ${{ env.DIST_DIR }}
@@ -184,7 +184,7 @@ jobs:
184184
run: yarn run setup-tests
185185
- name: fetch build artifact
186186
# see https://github.com/actions/download-artifact
187-
uses: actions/download-artifact@v6
187+
uses: actions/download-artifact@v7
188188
with:
189189
name: ${{ env.BUNDLES_DIR }}
190190
path: ${{ env.BUNDLES_DIR }}
@@ -206,7 +206,7 @@ jobs:
206206
steps:
207207
- name: fetch build artifact
208208
# see https://github.com/actions/download-artifact
209-
uses: actions/download-artifact@v6
209+
uses: actions/download-artifact@v7
210210
with:
211211
name: ${{ env.DIST_DIR }}
212212
path: .
@@ -238,7 +238,7 @@ jobs:
238238
yarn pack --out "$PACKED_DIR"/%s-%v.tgz
239239
- name: artifact release result
240240
# see https://github.com/actions/upload-artifact
241-
uses: actions/upload-artifact@v5
241+
uses: actions/upload-artifact@v6
242242
with:
243243
name: ${{ env.PACKED_DIR }}
244244
path: ${{ env.PACKED_DIR }}/
@@ -259,13 +259,13 @@ jobs:
259259
steps:
260260
- name: fetch packages
261261
# see https://github.com/actions/download-artifact
262-
uses: actions/download-artifact@v6
262+
uses: actions/download-artifact@v7
263263
with:
264264
name: ${{ env.PACKED_DIR }}
265265
path: ${{ env.PACKED_DIR }}
266266
- name: fetch dist
267267
# see https://github.com/actions/download-artifact
268-
uses: actions/download-artifact@v6
268+
uses: actions/download-artifact@v7
269269
with:
270270
name: ${{ env.DIST_DIR }}
271271
path: ${{ env.DIST_DIR }}

0 commit comments

Comments
 (0)