Skip to content

Commit 10690e9

Browse files
committed
Update action scripts to latest versions
Also implements the breaking changes in upload/download artifacts
1 parent 4816623 commit 10690e9

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Diff for: .github/workflows/cron.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
idf_branch: [release/v5.1, release/v4.4] #, release/v3.3]
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
- name: Install dependencies

Diff for: .github/workflows/push.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
target: [esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2]
2121
fail-fast: false
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Install dependencies
2525
run: bash ./tools/prepare-ci.sh
2626
- name: Build Libs for ${{ matrix.target }}
@@ -29,12 +29,12 @@ jobs:
2929
if: failure()
3030
uses: actions/upload-artifact@v4
3131
with:
32-
name: build
32+
name: build-${{ matrix.target }}
3333
path: build
3434
- name: Upload archive
3535
uses: actions/upload-artifact@v4
3636
with:
37-
name: artifacts
37+
name: artifacts-${{ matrix.target }}
3838
path: dist
3939

4040
combine-artifacts:
@@ -43,10 +43,11 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Download artifacts
46-
uses: actions/download-artifact@v3
46+
uses: actions/download-artifact@v4
4747
with:
48-
name: artifacts
4948
path: dist
49+
pattern: artifacts-*
50+
merge-multiple: true
5051
- shell: bash
5152
run: |
5253
mkdir -p out

Diff for: .github/workflows/repository_dispatch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Dispatch Event
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Install dependencies
1212
run: bash ./tools/prepare-ci.sh
1313
- name: Handle Event

0 commit comments

Comments
 (0)