From 3c5761943bdbc0e755cfe8d7e1c20c8df50d3d02 Mon Sep 17 00:00:00 2001 From: Yuriy Kohut Date: Wed, 8 Jul 2026 12:46:14 +0300 Subject: [PATCH 1/3] CI: update actions/github-script v7 -> v9, ec2-action-builder v1.11 -> v1.12 --- .github/workflows/build-rpi-github-hosted.yml | 2 +- .github/workflows/build-rpi.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-rpi-github-hosted.yml b/.github/workflows/build-rpi-github-hosted.yml index a2c8ca3..c85bf6e 100644 --- a/.github/workflows/build-rpi-github-hosted.yml +++ b/.github/workflows/build-rpi-github-hosted.yml @@ -466,7 +466,7 @@ jobs: - name: Put S3 Bucket download URLs if: steps.publish-to-s3.outcome == 'success' && inputs.upload_to_s3 - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: result-encoding: string script: | diff --git a/.github/workflows/build-rpi.yml b/.github/workflows/build-rpi.yml index 60b6c16..034556b 100644 --- a/.github/workflows/build-rpi.yml +++ b/.github/workflows/build-rpi.yml @@ -118,7 +118,7 @@ jobs: - name: Setup and start the runner id: start-ec2-runner - uses: unblocked/ec2-action-builder@v1.11 + uses: unblocked/ec2-action-builder@v1.12 with: github_token: ${{ secrets.GIT_HUB_TOKEN }} aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -329,7 +329,7 @@ jobs: - name: Put S3 Bucket download URLs if: steps.publish-to-s3.outcome == 'success' && inputs.upload_to_s3 - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: result-encoding: string script: | From 97f68326b9f5728eae35c4c1a324f83c91643591 Mon Sep 17 00:00:00 2001 From: Yuriy Kohut Date: Wed, 8 Jul 2026 13:02:49 +0300 Subject: [PATCH 2/3] CI: add run-name based on workflow dispatch inputs --- .github/workflows/build-rpi-github-hosted.yml | 8 ++++++++ .github/workflows/build-rpi.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/build-rpi-github-hosted.yml b/.github/workflows/build-rpi-github-hosted.yml index c85bf6e..b89ec37 100644 --- a/.github/workflows/build-rpi-github-hosted.yml +++ b/.github/workflows/build-rpi-github-hosted.yml @@ -1,5 +1,13 @@ name: Build Raspberry Pi images (GitHub hosted runner) +run-name: >- + ${{ format('Build AlmaLinux {0} Raspberry Pi{1}{2}{3}{4} images', + inputs.version_major == '10-kitten' && 'Kitten 10' || inputs.version_major, + inputs.console && ' console' || '', + inputs.gnome && ' GNOME' || '', + inputs.mbr && ' MBR' || '', + inputs.gpt && ' GPT' || '') }} + on: workflow_dispatch: inputs: diff --git a/.github/workflows/build-rpi.yml b/.github/workflows/build-rpi.yml index 034556b..f710f2b 100644 --- a/.github/workflows/build-rpi.yml +++ b/.github/workflows/build-rpi.yml @@ -1,5 +1,13 @@ name: Build Raspberry Pi images +run-name: >- + ${{ format('Build AlmaLinux {0} Raspberry Pi{1}{2}{3}{4} images', + inputs.version_major == '10-kitten' && 'Kitten 10' || inputs.version_major, + inputs.console && ' console' || '', + inputs.gnome && ' GNOME' || '', + inputs.mbr && ' MBR' || '', + inputs.gpt && ' GPT' || '') }} + on: workflow_dispatch: inputs: From 31d8b535ed258fc2ca7a22d5622417236be3fcc8 Mon Sep 17 00:00:00 2001 From: Yuriy Kohut Date: Wed, 8 Jul 2026 13:08:34 +0300 Subject: [PATCH 3/3] CI: enable Mattermost notification by default --- .github/workflows/build-rpi-github-hosted.yml | 2 +- .github/workflows/build-rpi.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-rpi-github-hosted.yml b/.github/workflows/build-rpi-github-hosted.yml index b89ec37..6c3a504 100644 --- a/.github/workflows/build-rpi-github-hosted.yml +++ b/.github/workflows/build-rpi-github-hosted.yml @@ -68,7 +68,7 @@ on: description: "Send notification to Mattermost" required: true type: boolean - default: false + default: true jobs: build-image: diff --git a/.github/workflows/build-rpi.yml b/.github/workflows/build-rpi.yml index f710f2b..6593219 100644 --- a/.github/workflows/build-rpi.yml +++ b/.github/workflows/build-rpi.yml @@ -68,7 +68,7 @@ on: description: "Send notification to Mattermost" required: true type: boolean - default: false + default: true jobs: