Update GitHub workflows to set fetch-depth to 0 for actions/checkout in circuits.yml and contracts.yml. This change ensures that the full history is available for subsequent steps in the workflows.

This commit is contained in:
Javier Cortejoso
2025-12-19 10:53:21 +01:00
parent b68f52ed14
commit df7f7f9b43
2 changed files with 4 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ jobs:
should_run: ${{ steps.filter.outputs.should_run }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Check if should run
id: filter

View File

@@ -17,6 +17,8 @@ jobs:
should_run: ${{ steps.filter.outputs.should_run }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Check if should run
id: filter