From 100ec9def0e6ececfa19e10cbc60e8807a625afc Mon Sep 17 00:00:00 2001 From: Andrej Rypo Date: Fri, 26 Jan 2024 23:31:46 +0100 Subject: [PATCH] gh actions version upgrade --- .github/workflows/php-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml index 92612af..a36a85d 100644 --- a/.github/workflows/php-test.yml +++ b/.github/workflows/php-test.yml @@ -26,7 +26,7 @@ jobs: name: "PHP${{ matrix.php }} ${{ matrix.composer-flags }}" steps: - name: Checkout source - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@v2 @@ -41,7 +41,7 @@ jobs: - name: Cache Composer packages id: composer-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} @@ -58,7 +58,7 @@ jobs: run: composer global require -o --no-interaction --no-progress --prefer-dist php-coveralls/php-coveralls - name: Upload coverage results to Coveralls - uses: nick-invision/retry@v2 + uses: nick-invision/retry@2.9.0 env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true