Skip to content

Commit

Permalink
Update to use v4
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari committed Jan 31, 2025
1 parent b8bc951 commit a0ac34a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests-xcode-swift-6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,14 @@ jobs:
npm install && npm test
- name: Save xcodebuild logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-logs
path: |
DerivedData/Logs/Build
- name: Save crash logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-crashes
path: |
Expand All @@ -172,7 +172,7 @@ jobs:
zip -r ResultBundle.zip ResultBundle.xcresult
- name: Save test results
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-results
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,14 @@ jobs:
npm install && npm test
- name: Save xcodebuild logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-logs
path: |
DerivedData/Logs/Build
- name: Save crash logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-crashes
path: |
Expand All @@ -182,7 +182,7 @@ jobs:
zip -r ResultBundle.zip ResultBundle.xcresult
- name: Save test results
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-results
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ jobs:
npm install && npm test
- name: Save xcodebuild logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-logs
path: |
DerivedData/Logs/Build
- name: Save crash logs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-crashes
path: |
Expand All @@ -146,7 +146,7 @@ jobs:
zip -r ResultBundle.zip ResultBundle.xcresult
- name: Save test results
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}-results
path: |
Expand Down

0 comments on commit a0ac34a

Please sign in to comment.