@@ -61,14 +61,14 @@ jobs:
6161 - name : Build
6262 run : npm run build-ios
6363 - name : Upload npm package artifact
64- uses : actions/upload-artifact@v3
64+ uses : actions/upload-artifact@v4
6565 with :
66- name : npm-package
66+ name : npm-package-${{ matrix.runs-on }}
6767 path : dist/nativescript-ios-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
6868 - name : Upload dSYMs artifact
69- uses : actions/upload-artifact@v3
69+ uses : actions/upload-artifact@v4
7070 with :
71- name : NativeScript-dSYMs
71+ name : NativeScript-dSYMs-${{ matrix.runs-on }}
7272 path : dist/dSYMs
7373 test :
7474 name : Test
@@ -122,9 +122,9 @@ jobs:
122122 find $TEST_FOLDER/test-out -name "*junit*.xml" -maxdepth 1 -print0 | xargs -n 1 -0 npx verify-junit-xml
123123 - name : Archive Test Result Data
124124 if : always()
125- uses : actions/upload-artifact@v3
125+ uses : actions/upload-artifact@v4
126126 with :
127- name : test-results
127+ name : test-results-${{ matrix.runs-on }}
128128 path : ${{env.TEST_FOLDER}}/test_results.xcresult
129129 publish :
130130 runs-on : ubuntu-latest
@@ -142,7 +142,7 @@ jobs:
142142 with :
143143 node-version : 20
144144 registry-url : " https://registry.npmjs.org"
145- - uses : actions/download-artifact@v3
145+ - uses : actions/download-artifact@v4.1.7
146146 with :
147147 name : npm-package
148148 path : dist
@@ -172,11 +172,11 @@ jobs:
172172 node-version : 20
173173 - name : Setup
174174 run : npm install
175- - uses : actions/download-artifact@v3
175+ - uses : actions/download-artifact@v4.1.7
176176 with :
177177 name : npm-package
178178 path : dist
179- - uses : actions/download-artifact@v3
179+ - uses : actions/download-artifact@v4.1.7
180180 with :
181181 name : NativeScript-dSYMs
182182 path : dist/dSYMs
0 commit comments