From cf6c2064a08f3ba4fe29a8764b1eebebf3714931 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 08:49:26 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 1 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/authors-file.yml | 2 +- .github/workflows/linux.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/authors-file.yml b/.github/workflows/authors-file.yml index 8824bbdab..724e189cb 100644 --- a/.github/workflows/authors-file.yml +++ b/.github/workflows/authors-file.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout HEAD - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 7410c6894..2f1a63357 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -64,7 +64,7 @@ jobs: steps: - name: Checkout HEAD - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Restore/backup ccache uses: actions/cache@v3 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b04deaaab..757740503 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout HEAD - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Build tools run: | From ef63f43b3fc10f2ba1c369a3b7b57f399e919818 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Fri, 16 May 2025 11:15:35 +0200 Subject: [PATCH 2/2] GHA: Fetch full git history for windows --- .github/workflows/windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 757740503..db4806915 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,6 +30,8 @@ jobs: steps: - name: Checkout HEAD uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Build tools run: |