From b805ae3a8d1a47812828ad38a544265eb2a4b43f Mon Sep 17 00:00:00 2001 From: Tomas Sebestik Date: Fri, 17 Oct 2025 07:02:46 +0200 Subject: [PATCH 1/2] ci(github-docker-build): add GH hosted large runner for docker builds --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 88deb00f9b46..02faf43ad9db 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -21,7 +21,7 @@ jobs: # Disable the job in forks if: ${{ github.repository_owner == 'espressif' }} - runs-on: ubuntu-latest + runs-on: ubuntu-24.04-X64-large steps: # Depending on the branch/tag, set CLONE_BRANCH_OR_TAG variable (used in the Dockerfile # as a build arg) and TAG_NAME (used when tagging the image). From ea1c174c1cbb7348bd8ba0ff1eb306246938dd80 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 21 Oct 2025 13:13:31 +0200 Subject: [PATCH 2/2] change(version): Update version to 5.4.3 --- .gitlab/ci/common.yml | 2 +- components/esp_common/include/esp_idf_version.h | 2 +- tools/cmake/version.cmake | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab/ci/common.yml b/.gitlab/ci/common.yml index 9af95fc02acb..3192821f16d7 100644 --- a/.gitlab/ci/common.yml +++ b/.gitlab/ci/common.yml @@ -40,7 +40,7 @@ variables: GIT_FETCH_EXTRA_FLAGS: "--no-recurse-submodules --prune --prune-tags" # we're using .cache folder for caches GIT_CLEAN_FLAGS: -ffdx -e .cache/ - LATEST_GIT_TAG: v5.4.2 + LATEST_GIT_TAG: v5.4.3 SUBMODULE_FETCH_TOOL: "tools/ci/ci_fetch_submodule.py" # by default we will fetch all submodules diff --git a/components/esp_common/include/esp_idf_version.h b/components/esp_common/include/esp_idf_version.h index 39e1397a6741..d41662a64bdf 100644 --- a/components/esp_common/include/esp_idf_version.h +++ b/components/esp_common/include/esp_idf_version.h @@ -15,7 +15,7 @@ extern "C" { /** Minor version number (x.X.x) */ #define ESP_IDF_VERSION_MINOR 4 /** Patch version number (x.x.X) */ -#define ESP_IDF_VERSION_PATCH 2 +#define ESP_IDF_VERSION_PATCH 3 /** * Macro to convert IDF version number into an integer diff --git a/tools/cmake/version.cmake b/tools/cmake/version.cmake index 04a88ad718ee..1b7d2e98f25e 100644 --- a/tools/cmake/version.cmake +++ b/tools/cmake/version.cmake @@ -1,5 +1,5 @@ set(IDF_VERSION_MAJOR 5) set(IDF_VERSION_MINOR 4) -set(IDF_VERSION_PATCH 2) +set(IDF_VERSION_PATCH 3) set(ENV{IDF_VERSION} "${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}.${IDF_VERSION_PATCH}")