From 8c7cc68cbf45e895e163e2da1d182b1e11333aa7 Mon Sep 17 00:00:00 2001 From: Jade Date: Wed, 15 Oct 2025 12:53:15 +0000 Subject: [PATCH] fix(ci): Don't use shallow clone when we're comparing git history --- .forgejo/workflows/update-flake-hashes.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/update-flake-hashes.yml b/.forgejo/workflows/update-flake-hashes.yml index 2d14cba9..55f85485 100644 --- a/.forgejo/workflows/update-flake-hashes.yml +++ b/.forgejo/workflows/update-flake-hashes.yml @@ -7,6 +7,7 @@ on: - "Cargo.lock" - "Cargo.toml" - "rust-toolchain.toml" + - ".forgejo/workflows/update-flake-hashes.yml" jobs: update-flake-hashes: @@ -14,7 +15,7 @@ jobs: steps: - uses: https://code.forgejo.org/actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: - fetch-depth: 1 + fetch-depth: 0 fetch-tags: false fetch-single-branch: true submodules: false