diff --git a/.github/workflows/commitChecks.yml b/.github/workflows/commitChecks.yml index 7b4ab1a8b..753c51232 100644 --- a/.github/workflows/commitChecks.yml +++ b/.github/workflows/commitChecks.yml @@ -12,7 +12,10 @@ jobs: contents: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v1 + with: + fetch-depth: 0 + - name: Set up JDK 17 uses: actions/setup-java@v4 with: diff --git a/.github/workflows/databaseMigrationChecks.yml b/.github/workflows/databaseMigrationChecks.yml index 32a2751be..55b4f135a 100644 --- a/.github/workflows/databaseMigrationChecks.yml +++ b/.github/workflows/databaseMigrationChecks.yml @@ -28,6 +28,8 @@ jobs: --health-retries 5 steps: - uses: actions/checkout@v1 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v4 diff --git a/.github/workflows/dockerRelease.yml b/.github/workflows/dockerRelease.yml index 20f300890..528da954e 100644 --- a/.github/workflows/dockerRelease.yml +++ b/.github/workflows/dockerRelease.yml @@ -11,7 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v1 + with: + fetch-depth: 0 # Zips the docker related components of the release to store them - name: Tar Docker diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 5ae49422e..640dc98a9 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -109,6 +109,8 @@ jobs: --health-retries 5 steps: - uses: actions/checkout@v1 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96eb4389b..b6ec8e48f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v1 + with: + fetch-depth: 0 # Downloads the pre-release release to copy the artifacts used for testing - uses: robinraju/release-downloader@v1.10