From ee2218a952208708296ba177c765930b7e522a00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 03:44: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 17296cb8..a75a42ab 100644 --- a/.github/workflows/Android-CI.yml +++ b/.github/workflows/Android-CI.yml @@ -36,19 +36,19 @@ jobs: tag: default abi: x86 - 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 @@ -73,7 +73,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