From 9e44ccd278f05464f88413c0d705f07ce301cda4 Mon Sep 17 00:00:00 2001 From: 4Source <38220764+4Source@users.noreply.github.com> Date: Fri, 13 Mar 2026 17:28:10 +0100 Subject: [PATCH 1/3] Fix condition for removing release type tags in release workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e54775..3d58769 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ on: schedule: # Schedule automatic release every Wednesday - # - cron: "0 0 * * 3" + - cron: "0 0 * * 3" jobs: release: From 3014a08ca2d2d462a549e55d67351209da75a3c9 Mon Sep 17 00:00:00 2001 From: 4Source <38220764+4Source@users.noreply.github.com> Date: Thu, 14 May 2026 15:27:48 +0200 Subject: [PATCH 2/3] Fix checkout action to use stable version instead of specific commit --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d58769..053f02f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,8 +32,7 @@ jobs: steps: - name: Checkout id: checkout - # TODO: Have to use this commit because fetch-tags is not working in main till this is merged to main - uses: actions/checkout@0548471950d86b19eae6c063105707c831fb5c03 + uses: actions/checkout@v6 with: ref: ${{ github.event.ref }} fetch-tags: true From 266545ea562f58ab0ea320c95037fbf704761b34 Mon Sep 17 00:00:00 2001 From: 4Source <38220764+4Source@users.noreply.github.com> Date: Thu, 14 May 2026 15:28:51 +0200 Subject: [PATCH 3/3] Upgrade actions/checkout to v6 in CI and CD workflows --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2dfd983..9b74b05 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout id: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Process Pull Request id: process-pr diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d98c3c..b1c90a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Use Node.js "18.x" uses: actions/setup-node@v4