Skip to content

Commit 826c714

Browse files
chore(deps): bump actions/download-artifact from 4 to 5 (#5059)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' 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@gmail.com>
1 parent 710a254 commit 826c714

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
@@ -134,12 +134,12 @@ jobs:
134134
- name: Install Dependencies
135135
run: yarn install
136136
- name: Download dist
137-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v5
138138
with:
139139
name: dist
140140
path: packages/core/dist
141141
- name: Download ts3.8
142-
uses: actions/download-artifact@v4
142+
uses: actions/download-artifact@v5
143143
with:
144144
name: ts3.8
145145
path: packages/core/ts3.8
@@ -164,12 +164,12 @@ jobs:
164164
- name: Install Dependencies
165165
run: yarn install
166166
- name: Download dist
167-
uses: actions/download-artifact@v4
167+
uses: actions/download-artifact@v5
168168
with:
169169
name: dist
170170
path: packages/core/dist
171171
- name: Download Expo Plugin
172-
uses: actions/download-artifact@v4
172+
uses: actions/download-artifact@v5
173173
with:
174174
name: expo-plugin
175175
path: packages/core/plugin/build

.github/workflows/e2e-v2.yml

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

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

.github/workflows/sample-application.yml

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

239239
- name: Download iOS App Archive
240240
if: ${{ matrix.platform == 'ios' }}
241-
uses: actions/download-artifact@v4
241+
uses: actions/download-artifact@v5
242242
with:
243243
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks}}-${{ matrix.platform }}
244244
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
245245

246246
- name: Download Android APK
247247
if: ${{ matrix.platform == 'android' }}
248-
uses: actions/download-artifact@v4
248+
uses: actions/download-artifact@v5
249249
with:
250250
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }}
251251
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}

0 commit comments

Comments
 (0)