From 03e28605f8fa1c4132072558be7834254b53bba3 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Wed, 7 Feb 2024 19:04:15 +0100 Subject: [PATCH] Add workaround for actions/checkout#290 --- .github/workflows/build-beta.yml | 4 ++++ .github/workflows/build.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build-beta.yml b/.github/workflows/build-beta.yml index c0ed48088b..0f2583044c 100644 --- a/.github/workflows/build-beta.yml +++ b/.github/workflows/build-beta.yml @@ -17,6 +17,10 @@ jobs: with: fetch-depth: 0 + - name: Hack around https://github.com/actions/checkout/issues/290 + run: | + git fetch --tags --force + - name: Install and run Luacheck uses: nebularg/actions-luacheck@v1 with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d685b9c830..14fd6e7c4d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,10 @@ jobs: with: fetch-depth: 0 + - name: Hack around https://github.com/actions/checkout/issues/290 + run: | + git fetch --tags --force + - name: Install and run Luacheck uses: nebularg/actions-luacheck@v1 with: