Skip to content

Commit b56c821

Browse files
committed
build: update upload artifact to v4
1 parent 68e12b5 commit b56c821

5 files changed

+8
-8
lines changed

.github/workflows/build-android.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
RELEASE_KEY_PASSWORD: ${{ secrets.DROID_KEY_PASSWORD }}
6060

6161
- name: 'Upload Artifact'
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: sup-android-release
6565
path: android/app/build/outputs/*/*

.github/workflows/build-create-windows-store-on-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
github_token: ${{ secrets.github_token }}
7878

7979
- name: 'Upload Artifact'
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v4
8181
with:
8282
name: WinStoreRelease
8383
path: app-builds/*.appx

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
- name: Test E2E
5151
run: npm run e2e
5252
- name: Upload performance metrics as an artifact
53-
uses: actions/upload-artifact@v3
53+
uses: actions/upload-artifact@v4
5454
with:
5555
name: nightwatch-performance-metrics
5656
path: perf-metrics*.json
5757
- name: 'Upload E2E screenshots on failure'
5858
if: ${{ always() }}
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: e2eScreenshots
6262
path: e2e/screenshots/**/*.*

.github/workflows/lint-and-test-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- run: npm run test
4343
- run: npm run e2e
4444
- name: Upload performance metrics as an artifact
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: nightwatch-performance-metrics
4848
path: perf-metrics*.json
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: 'Upload E2E screenshots on failure'
7070
if: ${{ always() }}
71-
uses: actions/upload-artifact@v3
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: e2eScreenshots
7474
path: e2e/screenshots/**/*.*

.github/workflows/manual-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
release: false
5656

5757
- name: 'Upload Artifact'
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: WinBuildStuff
6161
path: app-builds/*.exe
@@ -150,7 +150,7 @@ jobs:
150150
# if: always()
151151
# run: ls -la && cat notarization-error.log
152152
- name: 'Upload Artifact'
153-
uses: actions/upload-artifact@v3
153+
uses: actions/upload-artifact@v4
154154
with:
155155
name: dmg
156156
path: app-builds/*.dmg

0 commit comments

Comments
 (0)