diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 9b24b78..2fdcf55 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -19,7 +19,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a6b963..5d5612b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Create release" uses: softprops/action-gh-release@v2 diff --git a/.github/workflows/send-pr.yml b/.github/workflows/send-pr.yml index 94faded..bc49054 100644 --- a/.github/workflows/send-pr.yml +++ b/.github/workflows/send-pr.yml @@ -18,7 +18,7 @@ jobs: php-version: "8.3" - name: "Checkout phpstan-src" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: phpstan/phpstan-src ref: 2.1.x diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 42c6c23..2730a8b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -18,14 +18,14 @@ jobs: steps: - name: "Checkout to commit" if: github.event_name != 'pull_request' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} fetch-depth: '0' token: ${{ secrets.PHPSTAN_BOT_TOKEN }} - name: "Checkout to only read" if: github.event_name == 'pull_request' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Install PHP" uses: "shivammathur/setup-php@v2" with: @@ -35,7 +35,7 @@ jobs: run: "composer install" working-directory: ./extractor - name: "Checkout" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -47,7 +47,7 @@ jobs: - name: "Delete checked out php-src repo" run: "rm -rf php-src" - name: "Checkout PHP 8.1" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -60,7 +60,7 @@ jobs: - name: "Delete checked out php-src repo" run: "rm -rf php-src" - name: "Checkout PHP 8.2" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -73,7 +73,7 @@ jobs: - name: "Delete checked out php-src repo" run: "rm -rf php-src" - name: "Checkout PHP 8.3" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -86,7 +86,7 @@ jobs: - name: "Delete checked out php-src repo" run: "rm -rf php-src" - name: "Checkout PHP 8.4" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -99,7 +99,7 @@ jobs: - name: "Delete checked out php-src repo" run: "rm -rf php-src" - name: "Checkout PHP 8.5" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "php/php-src" path: "php-src" @@ -121,7 +121,7 @@ jobs: version: ${{ steps.previous_tag.outputs.tag }} - name: "Commit changes" if: github.event_name != 'pull_request' - uses: "stefanzweifel/git-auto-commit-action@v6" + uses: "stefanzweifel/git-auto-commit-action@v7" id: "commit" with: commit_message: "Update stubs"