From 26c16969ab954db4d8d79bed154e3d45c12c087f Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 6 Jan 2026 09:12:39 -0600 Subject: [PATCH] github/workflows: Use same Ubuntu for code_size as ports_esp32. Also make sure code_size runs when the esp32 port source changes, as per the other ports that are built as part of code_size. Signed-off-by: Jeff Epler Signed-off-by: Damien George --- .github/workflows/code_size.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code_size.yml b/.github/workflows/code_size.yml index 066f6806c4..20f47a8a62 100644 --- a/.github/workflows/code_size.yml +++ b/.github/workflows/code_size.yml @@ -10,6 +10,7 @@ on: - 'shared/**' - 'lib/**' - 'ports/bare-arm/**' + - 'ports/esp32/**' - 'ports/mimxrt/**' - 'ports/minimal/**' - 'ports/rp2/**' @@ -23,7 +24,7 @@ concurrency: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 with: