diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 10f149a..ee2cba2 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the workspace - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run PHPCS uses: chekalsky/phpcs-action@v1 phpmd: @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the workspace - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run PHPMD uses: GeneaLabs/action-reviewdog-phpmd@1.0.0 with: @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the workspace - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run PHPStan uses: docker://oskarstark/phpstan-ga:1.8.0 with: diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 72e50a0..8f07af5 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -19,7 +19,7 @@ jobs: pages_threshold: major_outage - name: Check out code into the workspace if: success() && ${{ github.ref != 'refs/heads/master' }} - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup PHP 8.3 if: ${{ github.ref != 'refs/heads/master' }} uses: shivammathur/setup-php@v2