From f28d077a0850f43d7ed3b6b7ac2d5ee48f9b2096 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 05:32:19 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Android-CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Android-CI.yml b/.github/workflows/Android-CI.yml index aa8ef89c..501aba6d 100644 --- a/.github/workflows/Android-CI.yml +++ b/.github/workflows/Android-CI.yml @@ -39,19 +39,19 @@ jobs: abi: x86 cmdOptions: -noaudio -no-boot-anim -no-window -metrics-collection - name: Archive Espresso results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: IOIO-Espresso-report path: applications/**/build/reports/androidTests/connected/ - name: Save logcat output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: IOIO-logcat path: artifacts/logcat.log - name: Archive screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: IOIO-Screenshots @@ -81,7 +81,7 @@ jobs: - name: Code checks run: ./gradlew check - name: Archive Lint report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: IOIO-Lint-report