From 55413fa64d3a6710f9ee10cbc7aa9630b7ba5faf Mon Sep 17 00:00:00 2001 From: Ere Maijala Date: Fri, 11 Nov 2022 14:59:24 +0200 Subject: [PATCH] Fix CI deprecations. (#12) --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e27a092..45aeef0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,28 +28,28 @@ jobs: extensions: intl, xsl - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get composer cache directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Cache php-cs-fixer data - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: .php_cs_cache key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}" restore-keys: "php-${{ matrix.php-version }}-php-cs-fixer-" - name: Cache phpstan data - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: .phpstan_cache key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}"