From b0a125a9702a6f80ba9f68a467677fee3f88dce1 Mon Sep 17 00:00:00 2001 From: Tomas Sanchez Date: Fri, 12 Jun 2026 20:43:55 -0300 Subject: [PATCH] ci: bump GitHub Actions to Node 24 majors (checkout v5, setup-uv v6) actions/checkout@v4 and astral-sh/setup-uv@v5 run on the deprecated Node 20 runtime (forced off June 16 2026). Bump both the template-repo CI and the generated project's build.yml to the Node 24 majors. Co-Authored-By: Claude Fable 5 --- .github/workflows/template-ci.yml | 4 ++-- template/.github/workflows/build.yml.jinja | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/template-ci.yml b/.github/workflows/template-ci.yml index c93a7c3..6cf3626 100644 --- a/.github/workflows/template-ci.yml +++ b/.github/workflows/template-ci.yml @@ -21,9 +21,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v6 with: enable-cache: true - name: Install authoring dependencies diff --git a/template/.github/workflows/build.yml.jinja b/template/.github/workflows/build.yml.jinja index 79bc438..a49f1d2 100644 --- a/template/.github/workflows/build.yml.jinja +++ b/template/.github/workflows/build.yml.jinja @@ -20,9 +20,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v6 with: enable-cache: true - name: Install dependencies @@ -60,9 +60,9 @@ jobs: TEST_DATABASE_URL: postgresql+asyncpg://{{ project_slug }}:{{ project_slug }}@localhost:5432/{{ project_slug }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v6 with: enable-cache: true - name: Install dependencies