From 687285fdfb7138844fdf702a68b9e4a940ebc618 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 02:46:41 +0000 Subject: [PATCH 1/2] chore(deps): update actions/setup-node action from vv5 to v6 --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 1a980eb..d8287ac 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -20,7 +20,7 @@ jobs: bun-version-file: package.json - name: Setup Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: latest From d5747831d3af4943a4445090753aab7c71b6edb1 Mon Sep 17 00:00:00 2001 From: Dan Adajian Date: Sat, 1 Nov 2025 10:26:26 -0500 Subject: [PATCH 2/2] Simplify CI workflow by using Semantic Release Replaced Bun setup and installation steps with Semantic Release action. --- .github/workflows/publish.yaml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d8287ac..e503e72 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -14,21 +14,8 @@ jobs: - name: Checkout uses: actions/checkout@v5 - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version-file: package.json - - - name: Setup Node - uses: actions/setup-node@v6 - with: - node-version: latest - - - name: Install Dependencies - run: bun install - - - name: Create Release - run: bunx semantic-release + - name: Semantic Release + uses: cycjimmy/semantic-release-action@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}