Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Create release"
uses: softprops/action-gh-release@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/send-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
php-version: "8.3"

- name: "Checkout phpstan-src"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: phpstan/phpstan-src
ref: 2.1.x
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
steps:
- name: "Checkout to commit"
if: github.event_name != 'pull_request'
uses: actions/checkout@v4
uses: actions/checkout@v5
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@v4
uses: actions/checkout@v5
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
Expand All @@ -35,7 +35,7 @@ jobs:
run: "composer install"
working-directory: ./extractor
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand All @@ -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@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand All @@ -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@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand All @@ -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@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand All @@ -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@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand All @@ -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@v4
uses: actions/checkout@v5
with:
repository: "php/php-src"
path: "php-src"
Expand Down