From eef1775017625820740e35464dc0ffaccfdf0292 Mon Sep 17 00:00:00 2001 From: Corwin Marsh Date: Tue, 26 May 2026 16:57:03 -0700 Subject: [PATCH] ci: refresh workflow action versions --- .github/workflows/main.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8b3ba2..7f08bb1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,13 +20,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - run: pnpm install --frozen-lockfile - run: xvfb-run -a pnpm test if: runner.os == 'Linux' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9b8b9b..1ebd473 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,16 +21,16 @@ jobs: steps: - name: Checkout repository (full history) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: true - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22.x cache: pnpm