From 00554514460f0208c7523773ddd212f6c83afe4c Mon Sep 17 00:00:00 2001 From: DaxServer Date: Fri, 24 Oct 2025 15:35:51 +0200 Subject: [PATCH] chore: update actions versions, use frozen bun lockfile --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/publish.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbf66ce..e842c9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup bun - uses: oven-sh/setup-bun@v1 + uses: oven-sh/setup-bun@v2 with: bun-version: latest - name: Install packages - run: bun install + run: bun install --frozen-lockfile - name: Build code run: bun run build - name: Test - run: bun run test \ No newline at end of file + run: bun run test diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f20844b..6a50d09 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,10 +21,10 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout' - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 'Setup Bun' - uses: oven-sh/setup-bun@v1 + uses: oven-sh/setup-bun@v2 with: bun-version: latest registry-url: "https://registry.npmjs.org" @@ -35,7 +35,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install packages - run: bun install + run: bun install --frozen-lockfile - name: Build code run: bun run build