From b33f1341985676ac913e818caf64e495e3e02161 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 12:27:02 +0000 Subject: [PATCH 1/2] ci(deps): update actions/checkout action to v5 --- .github/workflows/audit.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 9e56b39..45f2418 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -10,7 +10,7 @@ jobs: name: Audit Tap Contents steps: - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update Homebrew run: brew update diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 18a4352..b883587 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: name: Lint Code Style runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Update Homebrew run: brew update - name: Tap ${{ github.repository }} @@ -21,7 +21,7 @@ jobs: name: Test B2 Formula runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Update Homebrew run: brew update - name: Tap ${{ github.repository }} From a621daf962396152230a1778c874b96420fc66b2 Mon Sep 17 00:00:00 2001 From: Kim Wittenburg Date: Thu, 21 Aug 2025 14:40:16 +0200 Subject: [PATCH 2/2] fix(ci): Unshallow Checkout --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b883587..ee99e59 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,8 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v5 + with: + fetch-depth: 0 - name: Update Homebrew run: brew update - name: Tap ${{ github.repository }}