diff --git a/.github/workflows/check-files.yml b/.github/workflows/check-files.yml index 7dbbf8fa1f0..9cc2f535fdf 100644 --- a/.github/workflows/check-files.yml +++ b/.github/workflows/check-files.yml @@ -70,7 +70,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index aa4625cc418..89fe922d656 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/composer.yml b/.github/workflows/composer.yml index 738728ed86b..5b512f7a7ac 100644 --- a/.github/workflows/composer.yml +++ b/.github/workflows/composer.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 15afb607a7f..6e4c931b169 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -14,7 +14,7 @@ jobs: webserver: ['apache-fpm', 'nginx-fpm'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Setup DDEV uses: ddev/github-action-setup-ddev@v1 with: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index abb0dd3c73e..843d6aac188 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,7 +21,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v5 with: python-version: 3.x diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index 25221ba79c3..6a96281cf4f 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -17,7 +17,7 @@ jobs: php-version: 8.1 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index ef46645a889..78e8acff008 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -17,7 +17,7 @@ jobs: php-version: 8.1 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/phpmd.yml b/.github/workflows/phpmd.yml index 15fb8e2c70a..9c351432c78 100644 --- a/.github/workflows/phpmd.yml +++ b/.github/workflows/phpmd.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index e445925e1d8..abe50b38bdb 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -16,7 +16,7 @@ jobs: with: php-version: 8.1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 2708ae8f9f2..2d844510d29 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -46,7 +46,7 @@ jobs: env: COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/rector.yml b/.github/workflows/rector.yml index 131f5d19fa5..c7a83d21970 100644 --- a/.github/workflows/rector.yml +++ b/.github/workflows/rector.yml @@ -17,7 +17,7 @@ jobs: php-version: 8.1 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get composer cache directory id: composer-cache diff --git a/.github/workflows/security-php.yml b/.github/workflows/security-php.yml index 4e15f9c3b03..a732eb2a144 100644 --- a/.github/workflows/security-php.yml +++ b/.github/workflows/security-php.yml @@ -16,7 +16,7 @@ jobs: runs-on: [ubuntu-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/cache@v4 id: cache-db diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index bd972191b92..0348f95816f 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check Spelling uses: rojopolis/spellcheck-github-actions@0.51.0 with: diff --git a/.github/workflows/syntax-php.yml b/.github/workflows/syntax-php.yml index 3336b3fef95..65541fd6f52 100644 --- a/.github/workflows/syntax-php.yml +++ b/.github/workflows/syntax-php.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/syntax-xml.yml b/.github/workflows/syntax-xml.yml index 054dd31534b..6d1bc1d6f33 100644 --- a/.github/workflows/syntax-xml.yml +++ b/.github/workflows/syntax-xml.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update APT repositories run: "sudo apt update" diff --git a/.github/workflows/update-phpstorm-meta.yml b/.github/workflows/update-phpstorm-meta.yml index 077d80b014f..5fd28e833f5 100644 --- a/.github/workflows/update-phpstorm-meta.yml +++ b/.github/workflows/update-phpstorm-meta.yml @@ -20,7 +20,7 @@ jobs: php-version: 8.1 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: main fetch-depth: 0