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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
- name: Build Examples
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: release-v5.4
esp_idf_version: v5.5.1
Copy link

Copilot AI Nov 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version format changed from 'release-v5.4' to 'v5.5.1'. This inconsistency may cause the workflow to fail if the espressif/esp-idf-ci-action expects a specific tag format. Verify that 'v5.5.1' is a valid tag in the ESP-IDF repository. If the previous format was 'release-v5.4', the new format should likely be 'release-v5.5.1' to maintain consistency.

Suggested change
esp_idf_version: v5.5.1
esp_idf_version: release-v5.5.1

Copilot uses AI. Check for mistakes.
target: ${{ matrix.test.target }}
path: ${{ matrix.test.path }}
command: ${{ matrix.test.command || 'idf.py build' }}
3 changes: 0 additions & 3 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,5 @@ jobs:
# Do not build the project and do not use cmake to generate compile_commands.json
use_cmake: false

# Use the 5.4 release version since it's what we build with
esp_idf_version: release/v5.4

# (Optional) cppcheck args
cppcheck_args: -i$GITHUB_WORKSPACE/lib -i$GITHUB_WORKSPACE/components/state_machine/example/main -i$GITHUB_WORKSPACE/components/hid-rp/include/hid --check-level=exhaustive --force --enable=all --inline-suppr --inconclusive --platform=mips32 --suppressions-list=$GITHUB_WORKSPACE/suppressions.txt
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is the repository for some c++ components developed for the
[ESP-IDF](https://github.com/espressif/esp-idf) framework. Specifically we are
targeting `ESP-IDF 5.4` currently.
targeting `ESP-IDF 5.5.1` currently.

> NOTE: This repo attempts to stay up to date with ESP-IDF. This means that the
> code within may not be supported on older ESP-IDF targets.
Expand All @@ -28,7 +28,7 @@ If you have questions or would like to chat, feel free to hop over to our discor
## Getting Started

The components in this repository are targeted towards ESP-IDF >=5.0, though
they are mainly tested against 5.4 right now.
they are mainly tested against 5.5.1 right now.

To use the components in this repository, you have a few options:

Expand Down
Loading