From d3b39e80e26ecac7c0f67a307a2d0dd4094dae67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Fri, 16 Jan 2026 10:47:04 +0100 Subject: [PATCH] github: workflow: Update the check kernel workflow to check for new 6.18 Since we use the same kernel for all platforms, we can update this job to only check for 6.18 instead of 6.12. --- .github/workflows/check-kernel-release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-kernel-release.yml b/.github/workflows/check-kernel-release.yml index b0009252..79f28f89 100644 --- a/.github/workflows/check-kernel-release.yml +++ b/.github/workflows/check-kernel-release.yml @@ -1,4 +1,4 @@ -name: Check Kernel 6.12 Release +name: Check Kernel 6.18 Release on: schedule: @@ -17,12 +17,12 @@ jobs: fetch-depth: 0 token: ${{ secrets.KERNEL_UPDATE_TOKEN }} - - name: Fetch kernel.org and check for 6.12 release + - name: Fetch kernel.org and check for 6.18 release id: check run: | set -e -o pipefail - # Fetch the kernel.org frontpage and extract 6.12 version - CURRENT_VERSION=$(curl -s https://www.kernel.org/ | grep -oP '6\.12\.\d+' | head -n1) + # Fetch the kernel.org frontpage and extract 6.18 version + CURRENT_VERSION=$(curl -s https://www.kernel.org/ | grep -oP '6\.18\.\d+' | head -n1) if [ -z "$CURRENT_VERSION" ]; then echo "Failed to fetch kernel version" @@ -30,7 +30,7 @@ jobs: fi echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT - echo "Current 6.12 kernel version: $CURRENT_VERSION" + echo "Current 6.18 kernel version: $CURRENT_VERSION" # Get the version from infix defconfig INFIX_VERSION=$(grep 'BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE=' configs/aarch64_defconfig | cut -d'"' -f2) @@ -47,7 +47,7 @@ jobs: echo "PR already exists for kernel $CURRENT_VERSION, skipping" else echo "new_release=true" >> $GITHUB_OUTPUT - echo "🎉 New 6.12 kernel released: $CURRENT_VERSION (infix version: $INFIX_VERSION)" + echo "🎉 New 6.18 kernel released: $CURRENT_VERSION (infix version: $INFIX_VERSION)" fi else echo "new_release=false" >> $GITHUB_OUTPUT