From 1684d9d9e730bddf881d71ce710fd0478f5b058a Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Tue, 30 Dec 2025 22:03:42 +0100 Subject: [PATCH] chore: set OpenWrt 24.10.5 as default version in GitHub Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed default OpenWrt version from 25.12.0-rc1 to 24.10.5 to match local-build.sh configuration and ensure stable builds by default. Changes in both workflows: - build-openwrt-packages.yml: default and env fallback - build-secubox-images.yml: default and env fallback - Reordered options to show 24.10.5 first Users can still manually select other versions when triggering workflows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/build-openwrt-packages.yml | 6 +++--- .github/workflows/build-secubox-images.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-openwrt-packages.yml b/.github/workflows/build-openwrt-packages.yml index fa42902c..8bd443da 100644 --- a/.github/workflows/build-openwrt-packages.yml +++ b/.github/workflows/build-openwrt-packages.yml @@ -33,11 +33,11 @@ on: openwrt_version: description: 'OpenWrt version' required: true - default: '25.12.0-rc1' + default: '24.10.5' type: choice options: - - '25.12.0-rc1' - '24.10.5' + - '25.12.0-rc1' - '23.05.5' - '23.05.4' - 'SNAPSHOT' @@ -47,7 +47,7 @@ on: default: 'x86-64' env: - OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }} + OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }} permissions: contents: write diff --git a/.github/workflows/build-secubox-images.yml b/.github/workflows/build-secubox-images.yml index 750488ec..655af82d 100644 --- a/.github/workflows/build-secubox-images.yml +++ b/.github/workflows/build-secubox-images.yml @@ -18,11 +18,11 @@ on: openwrt_version: description: 'OpenWrt version' required: true - default: '25.12.0-rc1' + default: '24.10.5' type: choice options: - - '25.12.0-rc1' - '24.10.5' + - '25.12.0-rc1' - '23.05.5' - '23.05.4' - 'SNAPSHOT' @@ -39,8 +39,8 @@ on: - 'v*.*.*-*' env: - # Use input if manual trigger, otherwise default to 25.12.0-rc1 for tag triggers - OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }} + # Use input if manual trigger, otherwise default to 24.10.5 for tag triggers + OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }} permissions: contents: write