From 3208a1ee902440cb23f49c6c49506e0ded3db5aa Mon Sep 17 00:00:00 2001 From: Steven Coaila Date: Sat, 9 May 2026 10:02:06 -0500 Subject: [PATCH] ci(actions): use Node 24 actions --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0571edd..5111762 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: verify: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - run: bun install - run: bun run format:check diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8974532..da819ea 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,13 +8,13 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - run: bun install - run: bun run build - - uses: actions/setup-node@v5 + - uses: actions/setup-node@v6 with: - node-version: 20 + node-version: 24 registry-url: https://registry.npmjs.org/ - run: npm publish env: