Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
ci: Bump revision of GitHub Actions scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
  • Loading branch information
gustavonihei committed May 17, 2022
1 parent 8751d89 commit aabed6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Expand Up @@ -13,12 +13,12 @@ jobs:
matrix:
targets: [esp32, esp32s2, esp32s3, esp32c3]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build IDF bootloader and partition table
uses: docker://docker.io/espressif/idf:v4.4.1
with:
args: ./build_idfboot.sh -c ${{matrix.targets}}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: idf-builds
path: out/
Expand All @@ -29,12 +29,12 @@ jobs:
matrix:
targets: [esp32, esp32s2, esp32c3]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build MCUboot bootloader
uses: docker://docker.io/espressif/idf:release-v4.4
with:
args: ./build_mcuboot.sh -s -c ${{matrix.targets}}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: mcuboot-builds
path: out/
Expand All @@ -44,7 +44,7 @@ jobs:
needs: [IDFboot, MCUboot]
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: buildartifacts/
- name: Update release
Expand Down

0 comments on commit aabed6e

Please sign in to comment.