From adde5d0fce46a93253a6159c527f3a501c6f86f6 Mon Sep 17 00:00:00 2001 From: Gerard Capes Date: Tue, 3 Mar 2026 08:35:43 +0000 Subject: [PATCH] Try an older version of the checkout action Fix #53. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa5c405..41bff23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: outputs: new_tag_name: ${{ steps.get_new_tag.outputs.new_tag_name }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v4 with: fetch-depth: 0 # get all history and tags ref: ${{ github.event.pull_request.base.ref }} @@ -152,7 +152,7 @@ jobs: needs: [bump-version] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.base.ref }} # otherwise we get the ref when the workflow started (missing above commit)