Skip to content

Commit dddd8ce

Browse files
chore(deps): update github artifact actions
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 069955a commit dddd8ce

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@v6
55+
uses: actions/upload-artifact@v7
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@v6
65+
uses: actions/upload-artifact@v7
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@v6
107+
uses: actions/upload-artifact@v7
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@v7
175+
uses: actions/download-artifact@v8
176176
with:
177177
name: ${{ env.DIST_DIR }}
178178
path: ${{ env.DIST_DIR }}
@@ -228,7 +228,7 @@ jobs:
228228
run: yarn run setup-tests
229229
- name: fetch build artifact
230230
# see https://github.com/actions/download-artifact
231-
uses: actions/download-artifact@v7
231+
uses: actions/download-artifact@v8
232232
with:
233233
name: ${{ env.BUNDLES_DIR }}
234234
path: ${{ env.BUNDLES_DIR }}
@@ -243,7 +243,7 @@ jobs:
243243
- name: artifact test reports
244244
if: ${{ ! cancelled() }}
245245
# see https://github.com/actions/upload-artifact
246-
uses: actions/upload-artifact@v6
246+
uses: actions/upload-artifact@v7
247247
with:
248248
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_${{ matrix.os }}_node${{ matrix.node-version }}'
249249
path: ${{ env.REPORTS_DIR }}
@@ -294,7 +294,7 @@ jobs:
294294
run: yarn install --no-immutable # we might be changing yarn version for tests -- require to ignore lock
295295
- name: fetch build artifact
296296
# see https://github.com/actions/download-artifact
297-
uses: actions/download-artifact@v7
297+
uses: actions/download-artifact@v8
298298
with:
299299
name: ${{ env.BUILD_DIR }}
300300
path: ${{ env.BUILD_DIR }}
@@ -312,7 +312,7 @@ jobs:
312312
steps:
313313
- name: fetch test artifacts
314314
# see https://github.com/actions/download-artifact
315-
uses: actions/download-artifact@v7
315+
uses: actions/download-artifact@v8
316316
with:
317317
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
318318
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@v6
121+
uses: actions/upload-artifact@v7
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@v6
131+
uses: actions/upload-artifact@v7
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@v7
151+
uses: actions/download-artifact@v8
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@v7
187+
uses: actions/download-artifact@v8
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@v7
209+
uses: actions/download-artifact@v8
210210
with:
211211
name: ${{ env.DIST_DIR }}
212212
path: .
@@ -232,7 +232,7 @@ jobs:
232232
yarn pack --out "$PACKED_DIR"/%s-%v.tgz
233233
- name: artifact release result
234234
# see https://github.com/actions/upload-artifact
235-
uses: actions/upload-artifact@v6
235+
uses: actions/upload-artifact@v7
236236
with:
237237
name: ${{ env.PACKED_DIR }}
238238
path: ${{ env.PACKED_DIR }}/
@@ -253,13 +253,13 @@ jobs:
253253
steps:
254254
- name: fetch packages
255255
# see https://github.com/actions/download-artifact
256-
uses: actions/download-artifact@v7
256+
uses: actions/download-artifact@v8
257257
with:
258258
name: ${{ env.PACKED_DIR }}
259259
path: ${{ env.PACKED_DIR }}
260260
- name: fetch dist
261261
# see https://github.com/actions/download-artifact
262-
uses: actions/download-artifact@v7
262+
uses: actions/download-artifact@v8
263263
with:
264264
name: ${{ env.DIST_DIR }}
265265
path: ${{ env.DIST_DIR }}

0 commit comments

Comments
 (0)