From 81d7724b3eaf110dac8f654b68eb7769988f2173 Mon Sep 17 00:00:00 2001 From: Cecilia Sanare Date: Sat, 13 Jan 2024 21:34:08 -0600 Subject: [PATCH] ci: temporarily lock in the semantic-release version --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8a966b..b84c9fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: - name: Build run: bun run build - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: build path: dist @@ -85,6 +85,7 @@ jobs: needs: [lint, test, build] steps: - uses: actions/checkout@v4 + - run: git --version - uses: oven-sh/setup-bun@v1 with: bun-version: latest @@ -92,13 +93,13 @@ jobs: - name: Install Packages run: bun install --frozen-lockfile - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: build path: dist - name: Deploy - run: bunx --bun semantic-release + run: bunx --bun semantic-release@^22 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}