From 43ae75170735ff9975d10dff6670bbb0f0a4fd0f Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 29 May 2024 18:59:43 +1000 Subject: [PATCH] remove cache actions --- .github/workflows/phpunit.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index bf9ee75f4f3f..012451744617 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -92,28 +92,6 @@ jobs: run: | cp .env.ci .env - # - name: Get Composer Cache Directory - # id: composer-cache - # run: | - # echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - # - uses: actions/cache@v4 - # with: - # path: ${{ steps.composer-cache.outputs.dir }} - # key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} - # restore-keys: | - # ${{ runner.os }}-${{ matrix.php }}-composer- - - - name: Get Composer Cache Directory - id: composer-cache - run: | - echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.php }}-composer- - - name: Install composer dependencies run: | composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}