Skip to content

Commit e73d65f

Browse files
chore(deps): update github-actions
1 parent 92efdb5 commit e73d65f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: "ubuntu-latest"
2020
steps:
2121
- name: "Checkout"
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
- name: "Install PHP"
2424
uses: "shivammathur/setup-php@v2"
2525
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: "Checkout"
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: "Create release"
2222
uses: softprops/action-gh-release@v2

.github/workflows/send-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
php-version: "8.3"
1919

2020
- name: "Checkout phpstan-src"
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
repository: phpstan/phpstan-src
2424
ref: 2.1.x

.github/workflows/update.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
steps:
1919
- name: "Checkout to commit"
2020
if: github.event_name != 'pull_request'
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
ref: ${{ github.head_ref }}
2424
fetch-depth: '0'
2525
token: ${{ secrets.PHPSTAN_BOT_TOKEN }}
2626
- name: "Checkout to only read"
2727
if: github.event_name == 'pull_request'
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
- name: "Install PHP"
3030
uses: "shivammathur/setup-php@v2"
3131
with:
@@ -35,7 +35,7 @@ jobs:
3535
run: "composer install"
3636
working-directory: ./extractor
3737
- name: "Checkout"
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
repository: "php/php-src"
4141
path: "php-src"
@@ -47,7 +47,7 @@ jobs:
4747
- name: "Delete checked out php-src repo"
4848
run: "rm -rf php-src"
4949
- name: "Checkout PHP 8.1"
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
repository: "php/php-src"
5353
path: "php-src"
@@ -60,7 +60,7 @@ jobs:
6060
- name: "Delete checked out php-src repo"
6161
run: "rm -rf php-src"
6262
- name: "Checkout PHP 8.2"
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464
with:
6565
repository: "php/php-src"
6666
path: "php-src"
@@ -73,7 +73,7 @@ jobs:
7373
- name: "Delete checked out php-src repo"
7474
run: "rm -rf php-src"
7575
- name: "Checkout PHP 8.3"
76-
uses: actions/checkout@v5
76+
uses: actions/checkout@v6
7777
with:
7878
repository: "php/php-src"
7979
path: "php-src"
@@ -86,7 +86,7 @@ jobs:
8686
- name: "Delete checked out php-src repo"
8787
run: "rm -rf php-src"
8888
- name: "Checkout PHP 8.4"
89-
uses: actions/checkout@v5
89+
uses: actions/checkout@v6
9090
with:
9191
repository: "php/php-src"
9292
path: "php-src"
@@ -99,7 +99,7 @@ jobs:
9999
- name: "Delete checked out php-src repo"
100100
run: "rm -rf php-src"
101101
- name: "Checkout PHP 8.5"
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
with:
104104
repository: "php/php-src"
105105
path: "php-src"
@@ -121,7 +121,7 @@ jobs:
121121
version: ${{ steps.previous_tag.outputs.tag }}
122122
- name: "Commit changes"
123123
if: github.event_name != 'pull_request'
124-
uses: "stefanzweifel/git-auto-commit-action@v6"
124+
uses: "stefanzweifel/git-auto-commit-action@v7"
125125
id: "commit"
126126
with:
127127
commit_message: "Update stubs"

0 commit comments

Comments
 (0)