From c6357746808512529ef2571c7ea97cecb6ef5a85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Jul 2022 13:10:58 -0400 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 (#4390) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-android.yaml | 4 ++-- .github/workflows/build-firmware.yaml | 16 ++++++++-------- .github/workflows/build-rusEFI-console.yaml | 2 +- .github/workflows/build-simulator.yaml | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-android.yaml b/.github/workflows/build-android.yaml index 1a217d17aa..2b6591b6f9 100644 --- a/.github/workflows/build-android.yaml +++ b/.github/workflows/build-android.yaml @@ -39,14 +39,14 @@ jobs: - name: Upload APK - release if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusEFI-release path: ./android/app/build/outputs/apk/release/rusEFI-release.apk - name: Upload APK - unsigned if: ${{ github.event_name != 'push' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusEFI-release-unsigned path: ./android/app/build/outputs/bundle/debug/rusEFI-debug.aab diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index 943c10059c..bc35464436 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -352,42 +352,42 @@ jobs: - name: Upload build elf if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_${{matrix.build-target}}.elf path: ./firmware/build/rusefi.elf - name: Upload build bin if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_${{matrix.build-target}}.bin path: ./firmware/deliver/rusefi*.bin - name: Upload build hex if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_${{matrix.build-target}}.hex path: ./firmware/deliver/rusefi*.hex - name: Upload build dfu if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_${{matrix.build-target}}.dfu path: ./firmware/deliver/rusefi*.dfu - name: Upload bundle if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_bundle_${{matrix.build-target}}.zip path: ./artifacts/rusefi_bundle*.zip - name: Upload autoupdate bundle if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && env.skip != 'true' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip path: ./artifacts/rusefi_bundle_${{matrix.build-target}}_autoupdate.zip @@ -453,14 +453,14 @@ jobs: - name: Attach console junit results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: console primary junit path: ./java_console/build/*.txt - name: Upload primary bundle if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_bundle.zip path: ./artifacts/rusefi_bundle.zip diff --git a/.github/workflows/build-rusEFI-console.yaml b/.github/workflows/build-rusEFI-console.yaml index f13974a7f0..d41bfb167b 100644 --- a/.github/workflows/build-rusEFI-console.yaml +++ b/.github/workflows/build-rusEFI-console.yaml @@ -45,7 +45,7 @@ jobs: - name: Attach console junit results if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: console junit path: ./java_console/build/*.txt diff --git a/.github/workflows/build-simulator.yaml b/.github/workflows/build-simulator.yaml index d8eb93940a..ecf6360c3f 100644 --- a/.github/workflows/build-simulator.yaml +++ b/.github/workflows/build-simulator.yaml @@ -43,7 +43,7 @@ jobs: run: ./build/rusefi_simulator 10 - name: Upload built simulator - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: rusefi_simulator_linux path: ./simulator/build/rusefi_simulator