From 5095434541a92db1ce03cbfe8a37a22909349284 Mon Sep 17 00:00:00 2001 From: Apaczer <94932128+Apaczer@users.noreply.github.com> Date: Sat, 30 Mar 2024 11:27:31 +0100 Subject: [PATCH] ACTIONS: update GH actions to v4 (#33) --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d797e10e..38abdb22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: image: miyoocfw/toolchain-shared-musl:master steps: - run: echo "submodule ${{ inputs.submodule }} on ${{ github.event }}" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - if: inputs.submodule run: git submodule update --init --depth 1 -- ${{ inputs.submodule }} # ARCH=arm and CROSS_COMPILE=arm-buildroot-linux-musleabi- env props are set in the docker image @@ -29,7 +29,7 @@ jobs: make miyoo_defconfig - name: build run: cd ${{ inputs.submodule || '.' }} && make - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: U-Boot (musl) path: ${{ inputs.submodule || '.' }}/u-boot-sunxi-with-spl.bin @@ -42,7 +42,7 @@ jobs: image: miyoocfw/toolchain-shared-uclibc:master steps: - run: echo "submodule ${{ inputs.submodule }} on ${{ github.event }}" - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - if: inputs.submodule run: git submodule update --init --depth 1 -- ${{ inputs.submodule }} # ARCH=arm and CROSS_COMPILE=arm-miyoo-linux-uclibcgnueabi- env props are set in the docker image @@ -52,7 +52,7 @@ jobs: make miyoo_defconfig - name: build run: cd ${{ inputs.submodule || '.' }} && make - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: U-Boot (uClibc) path: ${{ inputs.submodule || '.' }}/u-boot-sunxi-with-spl.bin