Update action scripts to latest versions
Also implements the breaking changes in upload/download artifacts
This commit is contained in:
parent
4816623607
commit
10690e92d4
3 changed files with 8 additions and 7 deletions
2
.github/workflows/cron.yml
vendored
2
.github/workflows/cron.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
matrix:
|
||||
idf_branch: [release/v5.1, release/v4.4] #, release/v3.3]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Install dependencies
|
||||
|
|
|
|||
11
.github/workflows/push.yml
vendored
11
.github/workflows/push.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
target: [esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2]
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: bash ./tools/prepare-ci.sh
|
||||
- name: Build Libs for ${{ matrix.target }}
|
||||
|
|
@ -29,12 +29,12 @@ jobs:
|
|||
if: failure()
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: build
|
||||
name: build-${{ matrix.target }}
|
||||
path: build
|
||||
- name: Upload archive
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: artifacts
|
||||
name: artifacts-${{ matrix.target }}
|
||||
path: dist
|
||||
|
||||
combine-artifacts:
|
||||
|
|
@ -43,10 +43,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: artifacts
|
||||
path: dist
|
||||
pattern: artifacts-*
|
||||
merge-multiple: true
|
||||
- shell: bash
|
||||
run: |
|
||||
mkdir -p out
|
||||
|
|
|
|||
2
.github/workflows/repository_dispatch.yml
vendored
2
.github/workflows/repository_dispatch.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
name: Dispatch Event
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install dependencies
|
||||
run: bash ./tools/prepare-ci.sh
|
||||
- name: Handle Event
|
||||
|
|
|
|||
Loading…
Reference in a new issue