diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8d16703..2df1b93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ env: # TODO: Update the below variables for your project APP_NAME: "Template" IDF_TARGET: 'esp32' - IDF_VERSION: 'v6.0' + IDF_VERSION: 'v6.0.1' IDF_COMPONENT_MANAGER: "1" # whether to enable the component manager or not FLASH_TOTAL_OVERRIDE: '1500000' # number of bytes of total flash (for percentage calculations) @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 # TODO: update this if you have submodules - name: Build main diff --git a/.github/workflows/package_main.yml b/.github/workflows/package_main.yml index b2a6ee9..25ff095 100644 --- a/.github/workflows/package_main.yml +++ b/.github/workflows/package_main.yml @@ -11,7 +11,7 @@ env: # TODO: Update the below variables for your project APP_NAME: "Template" IDF_TARGET: 'esp32' - IDF_VERSION: 'v6.0' + IDF_VERSION: 'v6.0.1' IDF_COMPONENT_MANAGER: "1" # whether to enable the component manager or not FLASH_TOTAL_OVERRIDE: '1500000' # number of bytes of total flash (for percentage calculations) @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: target: ${{ env.IDF_TARGET }} - name: Upload Build Outputs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 id: zip_step # TODO: add / remove files below. You may want to include for example # littlefs-flash_args if you have a littlefs filesystem image you want to @@ -57,7 +57,7 @@ jobs: build/flash_args - name: Attach files to release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 if: ${{ github.event.release && github.event.action == 'published' }} # TODO: add / remove files below. You may want to include for example # littlefs-flash_args if you have a littlefs filesystem image you want to diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 05a4260..31410f7 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Run static analysis uses: esp-cpp/StaticAnalysis@master