From 30e3d0b8b98b615ac4f730c14fc361672a1ae197 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Mon, 7 Dec 2020 12:27:43 +0200 Subject: [PATCH] github: switch to checkout v1 V2 handles tags incorrectly (https://github.com/actions/checkout/issues/290) and the easiest solution is to simply switch to v1. --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 9a555a9ab4..c500d7a879 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v1 with: fetch-depth: 0