From c449fe693d14edb2424a52ad6f6579423af4d8fd Mon Sep 17 00:00:00 2001 From: jank Date: Thu, 14 Aug 2025 13:46:44 +0200 Subject: [PATCH] feat: Move to bun --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 0a4b082..37fabe0 100644 --- a/action.yml +++ b/action.yml @@ -15,17 +15,17 @@ runs: uses: actions/checkout@v3 with: fetch-depth: 0 + - uses: oven-sh/setup-bun@v2 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: "lts/*" - name: Install dependencies - run: npm install semantic-release @saithodev/semantic-release-gitea @semantic-release/changelog + run: bun install semantic-release @saithodev/semantic-release-gitea @semantic-release/changelog - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies - run: npm audit signatures + run: bun audit signatures - name: Release env: GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} GITEA_TOKEN: ${{ inputs.GITEA_TOKEN }} - run: npx semantic-release - + run: bunx semantic-release -- 2.49.1