From a7254215e4322a0afa5c4548768a133bca3390a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 13:32:04 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/automation-trigger-test.yml | 2 +- .github/workflows/integration-tests.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/verify.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/automation-trigger-test.yml b/.github/workflows/automation-trigger-test.yml index 4ffaa4ed0..5904073e2 100644 --- a/.github/workflows/automation-trigger-test.yml +++ b/.github/workflows/automation-trigger-test.yml @@ -87,7 +87,7 @@ jobs: run: cat ${{ github.workspace }}/output.txt - name: Publishing test report if: always() # run this step even if previous step failed - uses: actions/upload-artifact@v3 # upload test results + uses: actions/upload-artifact@v5 # upload test results with: name: test-results path: ${{ github.workspace }}/output.txt diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 079e2cf9e..987839f3d 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -35,7 +35,7 @@ jobs: - name: Run integration tests run: bundle exec fastlane integration_tests - name: Upload test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 if: always() # even if tests fail with: name: test-results diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba664551d..3f619d53e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: run: | ./scripts/prep_xcframework.sh - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release_framework path: | @@ -125,7 +125,7 @@ jobs: run: | ./scripts/prep_xcframework_noidfa.sh - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: framework-noidfa path: | @@ -145,7 +145,7 @@ jobs: run: | ./scripts/prep_static_xcframework.sh - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: static-framework path: | @@ -163,7 +163,7 @@ jobs: run: | ./scripts/prep_static_xcframework_noidfa.sh - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: static-framework-noidfa path: | diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 92bc6a408..6af02825c 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -38,7 +38,7 @@ jobs: - name: Run unit tests run: bundle exec fastlane unit_tests - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() # even if tests fail with: name: test-results