From 885788d5e4cf48c80935568c07df624370424d75 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Mon, 23 Mar 2026 06:48:09 -0700 Subject: [PATCH] Upgrade actions. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4cb090..5ba5e0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,9 +46,9 @@ jobs: python-version: "3.14" steps: - name: Checkout dev-cmd - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install the latest version of uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: python-version: "${{ matrix.python-version }}" - name: Run CI checks diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d850c47..68668fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,11 +51,11 @@ jobs: id-token: write steps: - name: Checkout dev-cmd ${{ needs.determine-tag.outputs.release-tag }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ needs.determine-tag.outputs.release-tag }} - name: Install the latest version of uv - uses: astral-sh/setup-uv@v4 + uses: astral-sh/setup-uv@v7 - name: Build sdist and wheel run: uv build - name: Publish dev-cmd ${{ needs.determine-tag.outputs.release-tag }}