From d2aed7ae1d20b6106aa1079f7dd76f6f6a196480 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 01:51:08 +0000 Subject: [PATCH 1/3] chore(deps): update actions/setup-node action from vv5 to v6 --- .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 2a599c4f..e171eed2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,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 bf4dac0676fbe98555d62ad03a22d6f606d71b57 Mon Sep 17 00:00:00 2001 From: Dan Adajian Date: Sat, 1 Nov 2025 10:24:55 -0500 Subject: [PATCH 2/3] Replace Bun setup with Semantic Release action --- .github/workflows/release.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e171eed2..925bd997 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,17 +12,7 @@ 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: Create Release - run: bunx semantic-release + - name: Semantic Release + uses: cycjimmy/semantic-release-action@v5 env: GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} From 8aa23bccb41dcca79d9a2b664cf9e99df3193bd0 Mon Sep 17 00:00:00 2001 From: Dan Adajian Date: Sat, 1 Nov 2025 10:45:29 -0500 Subject: [PATCH 3/3] Add Bun setup and installation steps to release workflow Added steps to setup Bun and install dependencies. --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 925bd997..276e76e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,14 @@ jobs: - name: Checkout uses: actions/checkout@v5 + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version-file: package.json + + - name: Install + run: bun install + - name: Semantic Release uses: cycjimmy/semantic-release-action@v5 env: