diff --git a/.github/workflows/ci-tests-xcode-swift-6.yml b/.github/workflows/ci-tests-xcode-swift-6.yml index c22e1411e..f6cf76d4a 100644 --- a/.github/workflows/ci-tests-xcode-swift-6.yml +++ b/.github/workflows/ci-tests-xcode-swift-6.yml @@ -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: | @@ -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: | diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 95079e82e..1415138ae 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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: | @@ -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: | diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index 3c5284b16..2f83d4d6e 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -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: | @@ -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: |