From 7723584d6c6076fd7f25d4a365531c9fc68141df Mon Sep 17 00:00:00 2001 From: Stefan Seeland <168659+stesee@users.noreply.github.com> Date: Sat, 20 Jun 2026 21:18:55 +0200 Subject: [PATCH 1/2] Bump GitHub Actions checkout and setup-node Update .github/workflows/build.yml to use actions/checkout@v5 and actions/setup-node@v6 in both jobs. Node version and npm cache settings are unchanged; this upgrades the workflow actions to newer major releases for compatibility and maintenance. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45f062b..2fe6aca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 24 cache: npm @@ -57,10 +57,10 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 24 cache: npm From 721b8f928f787abe5f4a7c2b412243980d808038 Mon Sep 17 00:00:00 2001 From: Stefan Seeland <168659+stesee@users.noreply.github.com> Date: Sat, 20 Jun 2026 21:32:31 +0200 Subject: [PATCH 2/2] Add workflow_dispatch and fix branch pattern Normalize the branch pattern quoting (use double quotes) and add a workflow_dispatch trigger so the workflow can be started manually. No other functional changes were made. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2fe6aca..31d5a61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,8 @@ name: Branch build and release on: push: branches: - - '**' + - "**" + workflow_dispatch: permissions: contents: read