From e1b92ee73838156979df6159c1bfeb73a756da3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Janu=CC=8A?= Date: Thu, 28 Nov 2024 13:52:03 +0100 Subject: [PATCH] actions/checkout@v4 --- .github/workflows/code_style.yml | 2 +- .github/workflows/composer.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/phpunit.yml | 2 +- .github/workflows/static_analysis.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/code_style.yml b/.github/workflows/code_style.yml index 61a0e7a..320ac1e 100644 --- a/.github/workflows/code_style.yml +++ b/.github/workflows/code_style.yml @@ -14,7 +14,7 @@ jobs: php: [ '8.1' ] name: PHP ${{ matrix.php }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} diff --git a/.github/workflows/composer.yml b/.github/workflows/composer.yml index aa53973..9799bf5 100644 --- a/.github/workflows/composer.yml +++ b/.github/workflows/composer.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Validate composer.json and composer.lock run: composer validate --strict diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ddff159..f684f2d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,7 +15,7 @@ jobs: name: PHPUnit steps: - name: "Checkout" - uses: "actions/checkout@v2" + uses: "actions/checkout@v4" - name: "Setup PHP cache environment" id: "extcache" diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 29258b6..e679c21 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -13,7 +13,7 @@ jobs: php: [ '8.1', '8.2', '8.3', '8.4' ] name: PHP ${{ matrix.php }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index 74d97dc..630d6be 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -13,7 +13,7 @@ jobs: php: [ '8.1', '8.2', '8.3', '8.4' ] name: PHP ${{ matrix.php }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }}