From fc8d15ad7472647b29167ea8c98d748b9d720ec7 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 9 Sep 2025 18:03:39 +0545 Subject: [PATCH] chore(ci): update github workflow actions to latest versions --- .github/workflows/ci.yml | 6 +++--- composer.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19293e3..cd94fb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: code-analysis: 'yes' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php @@ -42,7 +42,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} # Use composer.json for key, if composer.lock is not committed. @@ -65,5 +65,5 @@ jobs: run: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml - name: Code Coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5 if: matrix.coverage != 'none' diff --git a/composer.json b/composer.json index 7ecf386..e1f4ae1 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ } }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.64", + "friendsofphp/php-cs-fixer": "^3.87", "phpstan/phpstan": "^1.12", "phpunit/phpunit" : "^9.6" },