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] <support@github.com>
This commit is contained in:
parent
1021a991e4
commit
ccdda75ced
|
@ -57,14 +57,14 @@ jobs:
|
||||||
|
|
||||||
- name: Upload APK - release
|
- name: Upload APK - release
|
||||||
if: ${{ github.event_name == 'push' }}
|
if: ${{ github.event_name == 'push' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusEFI-release
|
name: rusEFI-release
|
||||||
path: ./android/app/build/outputs/apk/release/rusEFI-release.apk
|
path: ./android/app/build/outputs/apk/release/rusEFI-release.apk
|
||||||
|
|
||||||
- name: Upload APK - unsigned
|
- name: Upload APK - unsigned
|
||||||
if: ${{ github.event_name != 'push' }}
|
if: ${{ github.event_name != 'push' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusEFI-release-unsigned
|
name: rusEFI-release-unsigned
|
||||||
path: ./android/app/build/outputs/bundle/debug/rusEFI-debug.aab
|
path: ./android/app/build/outputs/bundle/debug/rusEFI-debug.aab
|
||||||
|
|
|
@ -544,28 +544,28 @@ jobs:
|
||||||
|
|
||||||
- name: Upload build elf artifact
|
- name: Upload build elf artifact
|
||||||
if: ${{ env.partial == 'true' }}
|
if: ${{ env.partial == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_${{matrix.build-target}}.elf
|
name: rusefi_${{matrix.build-target}}.elf
|
||||||
path: ./firmware/build/rusefi.elf
|
path: ./firmware/build/rusefi.elf
|
||||||
|
|
||||||
- name: Upload build map artifact
|
- name: Upload build map artifact
|
||||||
if: ${{ env.partial == 'true' }}
|
if: ${{ env.partial == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_${{matrix.build-target}}.map
|
name: rusefi_${{matrix.build-target}}.map
|
||||||
path: ./firmware/build/rusefi.map
|
path: ./firmware/build/rusefi.map
|
||||||
|
|
||||||
- name: Upload build bin artifact
|
- name: Upload build bin artifact
|
||||||
if: ${{ env.partial == 'true' }}
|
if: ${{ env.partial == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_${{matrix.build-target}}.bin
|
name: rusefi_${{matrix.build-target}}.bin
|
||||||
path: ./firmware/deliver/rusefi*.bin
|
path: ./firmware/deliver/rusefi*.bin
|
||||||
|
|
||||||
- name: Upload build hex artifact
|
- name: Upload build hex artifact
|
||||||
if: ${{ env.partial == 'true' }}
|
if: ${{ env.partial == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_${{matrix.build-target}}.hex
|
name: rusefi_${{matrix.build-target}}.hex
|
||||||
# we have a bit of a mess - this file from 'build' folder is only legit for not-BLT builds
|
# we have a bit of a mess - this file from 'build' folder is only legit for not-BLT builds
|
||||||
|
@ -574,21 +574,21 @@ jobs:
|
||||||
|
|
||||||
- name: Upload build dfu artifact
|
- name: Upload build dfu artifact
|
||||||
if: ${{ env.partial == 'true' }}
|
if: ${{ env.partial == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_${{matrix.build-target}}.dfu
|
name: rusefi_${{matrix.build-target}}.dfu
|
||||||
path: ./firmware/deliver/rusefi*.dfu
|
path: ./firmware/deliver/rusefi*.dfu
|
||||||
|
|
||||||
- name: Upload bundle artifact
|
- name: Upload bundle artifact
|
||||||
if: ${{ env.full == 'true' }}
|
if: ${{ env.full == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_bundle_${{matrix.build-target}}.zip
|
name: rusefi_bundle_${{matrix.build-target}}.zip
|
||||||
path: ./artifacts/rusefi_bundle*.zip
|
path: ./artifacts/rusefi_bundle*.zip
|
||||||
|
|
||||||
- name: Upload autoupdate bundle artifact
|
- name: Upload autoupdate bundle artifact
|
||||||
if: ${{ env.full == 'true' }}
|
if: ${{ env.full == 'true' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
name: rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||||
path: ./artifacts/rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
path: ./artifacts/rusefi_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||||
|
|
|
@ -58,7 +58,7 @@ jobs:
|
||||||
|
|
||||||
- name: Attach Gradle junit results
|
- name: Attach Gradle junit results
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: gradle junit
|
name: gradle junit
|
||||||
path: '**/build/test-results/test/TEST-*.xml'
|
path: '**/build/test-results/test/TEST-*.xml'
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
|
|
||||||
- name: Attach Ant console junit results
|
- name: Attach Ant console junit results
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: console junit
|
name: console junit
|
||||||
path: ./java_console/build/*.txt
|
path: ./java_console/build/*.txt
|
||||||
|
|
|
@ -118,7 +118,7 @@ jobs:
|
||||||
branch: ${{ steps.extract_branch.outputs.branch }}
|
branch: ${{ steps.extract_branch.outputs.branch }}
|
||||||
|
|
||||||
- name: Upload Linux built simulator
|
- name: Upload Linux built simulator
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_simulator_linux
|
name: rusefi_simulator_linux
|
||||||
path: ./simulator/build/rusefi_simulator
|
path: ./simulator/build/rusefi_simulator
|
||||||
|
|
|
@ -132,7 +132,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload CodeQL results as an artifact
|
- name: Upload CodeQL results as an artifact
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: codeql-results
|
name: codeql-results
|
||||||
path: ${{ steps.step1.outputs.sarif-output }}
|
path: ${{ steps.step1.outputs.sarif-output }}
|
||||||
|
|
|
@ -103,19 +103,19 @@ jobs:
|
||||||
run: bash misc/jenkins/compile_other_versions/compile.sh ../../.. ${{inputs.shortBoardName}}
|
run: bash misc/jenkins/compile_other_versions/compile.sh ../../.. ${{inputs.shortBoardName}}
|
||||||
|
|
||||||
- name: Upload build bin artifact
|
- name: Upload build bin artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi.bin
|
name: rusefi.bin
|
||||||
path: ext/rusefi/firmware/deliver/rusefi*.bin
|
path: ext/rusefi/firmware/deliver/rusefi*.bin
|
||||||
|
|
||||||
- name: Upload build hex artifact
|
- name: Upload build hex artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi.hex
|
name: rusefi.hex
|
||||||
path: ext/rusefi/firmware/deliver/rusefi*.hex
|
path: ext/rusefi/firmware/deliver/rusefi*.hex
|
||||||
|
|
||||||
- name: Upload build map artifact
|
- name: Upload build map artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi.map
|
name: rusefi.map
|
||||||
path: ext/rusefi/firmware/deliver/rusefi*.map
|
path: ext/rusefi/firmware/deliver/rusefi*.map
|
||||||
|
@ -142,7 +142,7 @@ jobs:
|
||||||
run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{inputs.shortBoardName}} ${{inputs.iniFileName}} master
|
run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{inputs.shortBoardName}} ${{inputs.iniFileName}} master
|
||||||
|
|
||||||
- name: Upload bundle artifact
|
- name: Upload bundle artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_bundle_${{inputs.shortBoardName}}.zip
|
name: rusefi_bundle_${{inputs.shortBoardName}}.zip
|
||||||
path: ext/rusefi/artifacts/rusefi_bundle*.zip
|
path: ext/rusefi/artifacts/rusefi_bundle*.zip
|
||||||
|
|
|
@ -77,7 +77,7 @@ jobs:
|
||||||
run: .github/workflows/hw-ci/openocd_wipe_and_flash.sh ${{matrix.openocd-script}}
|
run: .github/workflows/hw-ci/openocd_wipe_and_flash.sh ${{matrix.openocd-script}}
|
||||||
|
|
||||||
- name: Upload build bin artifact
|
- name: Upload build bin artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: rusefi_hw-ci-${{matrix.build-target}}.bin
|
name: rusefi_hw-ci-${{matrix.build-target}}.bin
|
||||||
path: ./firmware/deliver/rusefi*.bin
|
path: ./firmware/deliver/rusefi*.bin
|
||||||
|
|
Loading…
Reference in New Issue