Skip to content

Commit

Permalink
ACTIONS: update GH actions to v4 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Apaczer authored Mar 30, 2024
1 parent 8b607b0 commit 5095434
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5095434

Please sign in to comment.