From c814dff4a0665b45268bd6589c09ef7a5938c5aa Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 24 Oct 2022 10:15:21 +0200 Subject: [PATCH] Remove GitHub action cache (#81) We never set it up properly and it has deprecated features. --- .github/workflows/ci.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c073aec..ab47261 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,18 +48,6 @@ jobs: - name: Install xmllint run: sudo apt-get install libxml2-utils - - name: Get Composer Cache Directory - id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - - uses: actions/cache@v1 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest @@ -86,18 +74,6 @@ jobs: php-version: "7.4" tools: composer:v2 - - name: Get Composer Cache Directory - id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - - uses: actions/cache@v1 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest