Skip to content

Commit b7aa1aa

Browse files
chore(deps): bump actions/download-artifact from 5 to 6 (#5309)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Antonis Lilis <antonis.lilis@sentry.io>
1 parent d81f2d8 commit b7aa1aa

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/buildandtest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ jobs:
166166
- name: Install Dependencies
167167
run: yarn install
168168
- name: Download dist
169-
uses: actions/download-artifact@v5
169+
uses: actions/download-artifact@v6
170170
with:
171171
name: dist
172172
path: packages/core/dist
173173
- name: Download ts3.8
174-
uses: actions/download-artifact@v5
174+
uses: actions/download-artifact@v6
175175
with:
176176
name: ts3.8
177177
path: packages/core/ts3.8
@@ -197,12 +197,12 @@ jobs:
197197
- name: Install Dependencies
198198
run: yarn install
199199
- name: Download dist
200-
uses: actions/download-artifact@v5
200+
uses: actions/download-artifact@v6
201201
with:
202202
name: dist
203203
path: packages/core/dist
204204
- name: Download Expo Plugin
205-
uses: actions/download-artifact@v5
205+
uses: actions/download-artifact@v6
206206
with:
207207
name: expo-plugin
208208
path: packages/core/plugin/build

.github/workflows/e2e-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ jobs:
350350

351351
- name: Download App Package
352352
if: matrix.build-type == 'production'
353-
uses: actions/download-artifact@v5
353+
uses: actions/download-artifact@v6
354354
with:
355355
name: ${{ matrix.rn-version }}-${{ matrix.rn-architecture }}-${{ matrix.engine }}-${{ matrix.platform }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks }}-app-package
356356
path: dev-packages/e2e-tests

.github/workflows/sample-application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,14 +243,14 @@ jobs:
243243

244244
- name: Download iOS App Archive
245245
if: ${{ matrix.platform == 'ios' }}
246-
uses: actions/download-artifact@v5
246+
uses: actions/download-artifact@v6
247247
with:
248248
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks}}-${{ matrix.platform }}
249249
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
250250

251251
- name: Download Android APK
252252
if: ${{ matrix.platform == 'android' }}
253-
uses: actions/download-artifact@v5
253+
uses: actions/download-artifact@v6
254254
with:
255255
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }}
256256
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}

0 commit comments

Comments
 (0)