diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 8e0b4e9..b5a0b97 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -34,7 +34,7 @@ jobs: steps: - name: 'Checkout current revision' - uses: 'actions/checkout@v3' + uses: 'actions/checkout@v4' - name: 'Composer config GH token if available' run: 'if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi' @@ -51,7 +51,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v3' + uses: 'actions/cache@v4' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}" @@ -78,7 +78,7 @@ jobs: env_vars: PHP_VERSION - name: 'Archive code coverage results' - uses: 'actions/upload-artifact@v3' + uses: 'actions/upload-artifact@v4' with: name: 'PHP ${{ matrix.php }}' path: 'clover.xml'