From 32e6b59f18420e061e90fe8587ce0781ac9e2d66 Mon Sep 17 00:00:00 2001 From: Axel Guckelsberger Date: Fri, 8 Jan 2021 18:48:26 +0100 Subject: [PATCH] avoid php8 during composer usage atm --- .github/workflows/update-dependencies.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 1f5825f9cf..2a45b82c0a 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -6,7 +6,7 @@ jobs: update-deps: runs-on: ubuntu-latest steps: - - name: Checkout sources from 3.0 branch + - name: Checkout sources from master branch uses: actions/checkout@v2 with: ref: master @@ -24,14 +24,12 @@ jobs: - name: Install dependencies run: | - composer install + php7.4 composer install - name: Update dependencies - #run: | - # php -dmemory_limit=10G /usr/bin/composer update run: | composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} - composer update + php7.4 composer update composer config --global --auth --unset github-oauth.github.com # see https://github.com/peter-evans/create-pull-request