Skip to content

Commit dca1d22

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

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: yarn run build:bundle-dev
5959
- name: artifact build result
6060
# see https://github.com/actions/upload-artifact
61-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
61+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6262
with:
6363
name: ${{ env.BUNDLES_DIR }}
6464
path: ${{ env.BUNDLES_DIR }}
@@ -68,7 +68,7 @@ jobs:
6868
run: yarn run make-dist
6969
- name: artifact build result
7070
# see https://github.com/actions/upload-artifact
71-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
71+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7272
with:
7373
name: ${{ env.DIST_DIR }}
7474
path: ${{ env.DIST_DIR }}
@@ -116,7 +116,7 @@ jobs:
116116
eslint-report: ${{ env.REPORTS_DIR }}/eslint.json
117117
- name: artifact eslint result
118118
# see https://github.com/actions/upload-artifact
119-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
119+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
120120
if: ${{ failure() }}
121121
with:
122122
name: ${{ env.STANDARD_REPORTS_ARTIFACT }}
@@ -198,7 +198,7 @@ jobs:
198198
persist-credentials: false
199199
- name: fetch build artifact
200200
# see https://github.com/actions/download-artifact
201-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
201+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
202202
with:
203203
name: ${{ env.DIST_DIR }}
204204
path: ${{ env.DIST_DIR }}
@@ -260,7 +260,7 @@ jobs:
260260
run: yarn run setup-tests
261261
- name: fetch build artifact
262262
# see https://github.com/actions/download-artifact
263-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
263+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
264264
with:
265265
name: ${{ env.BUNDLES_DIR }}
266266
path: ${{ env.BUNDLES_DIR }}
@@ -275,7 +275,7 @@ jobs:
275275
- name: artifact test reports
276276
if: ${{ ! cancelled() }}
277277
# see https://github.com/actions/upload-artifact
278-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
278+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
279279
with:
280280
name: '${{ env.TESTS_REPORTS_ARTIFACT }}_${{ matrix.os }}_node${{ matrix.node-version }}'
281281
path: ${{ env.REPORTS_DIR }}
@@ -330,7 +330,7 @@ jobs:
330330
run: yarn install --no-immutable # we might be changing yarn version for tests -- require to ignore lock
331331
- name: fetch build artifact
332332
# see https://github.com/actions/download-artifact
333-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
333+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
334334
with:
335335
name: ${{ env.BUILD_DIR }}
336336
path: ${{ env.BUILD_DIR }}
@@ -348,7 +348,7 @@ jobs:
348348
steps:
349349
- name: fetch test artifacts
350350
# see https://github.com/actions/download-artifact
351-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
351+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
352352
with:
353353
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
354354
merge-multiple: true

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
run: yarn run build
129129
- name: artifact build result
130130
# see https://github.com/actions/upload-artifact
131-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
131+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
132132
with:
133133
name: ${{ env.BUNDLES_DIR }}
134134
path: ${{ env.BUNDLES_DIR }}
@@ -138,7 +138,7 @@ jobs:
138138
run: yarn run make-dist
139139
- name: artifact build result
140140
# see https://github.com/actions/upload-artifact
141-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
141+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
142142
with:
143143
name: ${{ env.DIST_DIR }}
144144
path: ${{ env.DIST_DIR }}
@@ -159,7 +159,7 @@ jobs:
159159
persist-credentials: false
160160
- name: fetch build artifact
161161
# see https://github.com/actions/download-artifact
162-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
162+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
163163
with:
164164
name: ${{ env.DIST_DIR }}
165165
path: ${{ env.DIST_DIR }}
@@ -200,7 +200,7 @@ jobs:
200200
run: yarn run setup-tests
201201
- name: fetch build artifact
202202
# see https://github.com/actions/download-artifact
203-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
203+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
204204
with:
205205
name: ${{ env.BUNDLES_DIR }}
206206
path: ${{ env.BUNDLES_DIR }}
@@ -222,7 +222,7 @@ jobs:
222222
steps:
223223
- name: fetch build artifact
224224
# see https://github.com/actions/download-artifact
225-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
225+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
226226
with:
227227
name: ${{ env.DIST_DIR }}
228228
path: .
@@ -252,7 +252,7 @@ jobs:
252252
yarn pack --out "$PACKED_DIR"/%s-%v.tgz
253253
- name: artifact release result
254254
# see https://github.com/actions/upload-artifact
255-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
255+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
256256
with:
257257
name: ${{ env.PACKED_DIR }}
258258
path: ${{ env.PACKED_DIR }}/
@@ -273,13 +273,13 @@ jobs:
273273
steps:
274274
- name: fetch packages
275275
# see https://github.com/actions/download-artifact
276-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
276+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
277277
with:
278278
name: ${{ env.PACKED_DIR }}
279279
path: ${{ env.PACKED_DIR }}
280280
- name: fetch dist
281281
# see https://github.com/actions/download-artifact
282-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
282+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
283283
with:
284284
name: ${{ env.DIST_DIR }}
285285
path: ${{ env.DIST_DIR }}

0 commit comments

Comments
 (0)