Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/package_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading