@@ -10,28 +10,31 @@ jobs:
1010 build :
1111 strategy :
1212 matrix :
13- idf_ver : ["v5.3 "]
13+ idf_ver : ["v5.4 "]
1414 runs-on : ubuntu-latest
1515 container : espressif/idf:${{ matrix.idf_ver }}
1616 steps :
1717 - name : Checkout repo
18- uses : actions/checkout@v3
18+ uses : actions/checkout@v4
1919 with :
2020 submodules : ' recursive'
2121
2222 - name : Upgrade component manager
2323 shell : bash
2424 run : |
2525 . ${IDF_PATH}/export.sh
26- pip install idf-component-manager==1 .* --upgrade
26+ pip install idf-component-manager==2 .* --upgrade
2727
2828 - name : Action for building binaries and config.toml
29- uses : espressif/idf-examples-launchpad-ci-action@v1.0.1
29+ env :
30+ IDF_EXTRA_ACTIONS_PATH : " ${{ github.workspace }}/examples"
31+ uses : espressif/idf-examples-launchpad-ci-action@v1.0.3
3032 with :
3133 idf_version : ${{ matrix.idf_ver }}
34+ config_file : examples/.idf_build_apps.toml
3235
3336 - name : Upload Artifact
34- uses : actions/upload-artifact@v3
37+ uses : actions/upload-artifact@v4
3538 with :
3639 name : built_files
3740 path : binaries/
@@ -50,16 +53,16 @@ jobs:
5053 runs-on : ubuntu-latest
5154 steps :
5255 - name : Download built files
53- uses : actions/download-artifact@v3
56+ uses : actions/download-artifact@v4
5457 with :
5558 name : built_files
5659 path : binaries/
5760
5861 - name : Upload built files to gh pages
59- uses : actions/upload-pages-artifact@v2
62+ uses : actions/upload-pages-artifact@v3
6063 with :
6164 path : binaries/
6265
6366 - name : Deploy to GitHub Pages
6467 id : deployment
65- uses : actions/deploy-pages@v2
68+ uses : actions/deploy-pages@v4
0 commit comments