From 58a884ef067b8b10f083621020127975e83cd1da Mon Sep 17 00:00:00 2001 From: Kim Morrison <477956+kim-em@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:32:52 +1100 Subject: [PATCH] chore: update actions/checkout action in lake new template (#10845) This PR update the `lake new` template to use the current version of the `actions/checkout` Github workflow. --- src/lake/Lake/CLI/Init.lean | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lake/Lake/CLI/Init.lean b/src/lake/Lake/CLI/Init.lean index f1b07169d8..912704d4a9 100644 --- a/src/lake/Lake/CLI/Init.lean +++ b/src/lake/Lake/CLI/Init.lean @@ -239,7 +239,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: leanprover/lean-action@v1 " @@ -262,7 +262,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: leanprover/lean-action@v1 - uses: leanprover-community/docgen-action@v1 "