Skip to content

Commit

Permalink
ACTIONS: update GH actions to v4 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Apaczer authored Mar 30, 2024
1 parent cc38c85 commit 7cf7407
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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 }}
- name: build all logos
Expand All @@ -30,7 +30,7 @@ jobs:
make -f Makefile.powkiddy ; mkdir bootlogo/powkiddy ; cp boot-logo ./bootlogo/powkiddy ; make -f Makefile clean
make -f Makefile.miyoo ; mkdir bootlogo/miyoo ; cp boot-logo ./bootlogo/miyoo ; make -f Makefile clean
make -f Makefile.generic ; mkdir bootlogo/generic ; cp boot-logo ./bootlogo/generic ; make -f Makefile clean
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Boot-logos (uClibc)
path: ${{ inputs.submodule || '.' }}/bootlogo
Expand All @@ -43,7 +43,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 }}
- name: build all logos
Expand All @@ -54,7 +54,7 @@ jobs:
make -f Makefile.powkiddy ; mkdir bootlogo/powkiddy ; cp boot-logo ./bootlogo/powkiddy ; make -f Makefile clean
make -f Makefile.miyoo ; mkdir bootlogo/miyoo ; cp boot-logo ./bootlogo/miyoo ; make -f Makefile clean
make -f Makefile.generic ; mkdir bootlogo/generic ; cp boot-logo ./bootlogo/generic ; make -f Makefile clean
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Boot-logos (musl)
path: ${{ inputs.submodule || '.' }}/bootlogo
Expand Down

0 comments on commit 7cf7407

Please sign in to comment.