From f6421c9c7cf77b63b84bf42cbb132666a5d1270c Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 11 Oct 2021 17:45:42 +0200 Subject: [PATCH] Fix PHP8 pipeline As per https://github.com/PrivateBin/PrivateBin/pull/843#issuecomment-939526915 Co-Authored-By: El RIDO --- .github/workflows/refresh-php8.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/refresh-php8.yml b/.github/workflows/refresh-php8.yml index 5160e227..76e8f856 100644 --- a/.github/workflows/refresh-php8.yml +++ b/.github/workflows/refresh-php8.yml @@ -12,10 +12,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Checkout php8 branch - run: git checkout php8 + uses: actions/checkout@v2 + with: + # directly checkout the php8 branch + ref: php8 + # Number of commits to fetch. 0 indicates all history for all branches and tags. + # Default: 1 + fetch-depth: 0 - name: Merge master changes into php8 run: git merge master