From 565c7ad9a51f89ba07d2382f3d14ecd1610159a9 Mon Sep 17 00:00:00 2001 From: Marat Al Date: Fri, 6 Sep 2024 11:52:52 +0200 Subject: [PATCH] Updated version for the `upload-artifact` action to v4 since CI is now failing with the older ones. --- .github/workflows/integration-test.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 60d098019..f49235800 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -91,23 +91,23 @@ jobs: - name: Upload Static Analyzer Reports if: ${{ failure() && steps.analyzer-output.outcome == 'failure' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: static-analyzer-reports-${{ matrix.lane }} path: ./derived_data/**/report-*.html - name: Upload Xcodebuild Logs if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: xcodebuild-logs + name: xcodebuild-logs-${{ matrix.lane }} path: ~/Library/Developer/Xcode/DerivedData/*/Logs - name: Upload Test Output if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: test-output + name: test-output-${{ matrix.lane }} path: fastlane/test_output - name: Upload Test Results