Skip to content

Commit 10b4eae

Browse files
Bump the github-actions group across 1 directory with 5 updates (#6374)
1 parent 2b2e6ac commit 10b4eae

7 files changed

Lines changed: 36 additions & 36 deletions

File tree

.github/workflows/chatops.yml

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

1313
steps:
1414
- name: Slash Command Dispatch
15-
uses: peter-evans/slash-command-dispatch@v4
15+
uses: peter-evans/slash-command-dispatch@v5
1616
with:
1717
token: ${{ secrets.BOT_TOKEN }}
1818
reaction-token: ${{ secrets.BOT_TOKEN }}

.github/workflows/code-style.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Add action run link to trigger comment
27-
uses: peter-evans/create-or-update-comment@v4
27+
uses: peter-evans/create-or-update-comment@v5
2828
if: github.event_name == 'repository_dispatch'
2929
with:
3030
token: ${{ secrets.BOT_TOKEN }}
@@ -33,16 +33,16 @@ jobs:
3333
body: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
3434

3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
if: env.writable == 1 && github.event_name != 'repository_dispatch'
3838
with:
3939
ref: ${{ github.head_ref }}
4040
token: ${{ secrets.BOT_TOKEN }}
4141
- name: Checkout fork
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
if: env.writable == 0
4444
- name: Checkout on chat commnad
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
if: github.event_name == 'repository_dispatch'
4747
with:
4848
token: ${{ secrets.BOT_TOKEN }}
@@ -64,7 +64,7 @@ jobs:
6464
run: vendor/bin/php-cs-fixer list-files --config=.php-cs-fixer.dist.php | xargs -n 250 -P 3 vendor/bin/php-cs-fixer fix --diff --config=.php-cs-fixer.dist.php
6565

6666
- name: Commit changed files
67-
uses: stefanzweifel/git-auto-commit-action@v6
67+
uses: stefanzweifel/git-auto-commit-action@v7
6868
if: env.writable == 1
6969
with:
7070
commit_message: Apply php-cs-fixer changes
@@ -85,13 +85,13 @@ jobs:
8585

8686
steps:
8787
- name: Checkout
88-
uses: actions/checkout@v5
88+
uses: actions/checkout@v6
8989
if: env.writable == 1
9090
with:
9191
ref: ${{ github.head_ref }}
9292
token: ${{ secrets.BOT_TOKEN }}
9393
- name: Checkout fork
94-
uses: actions/checkout@v5
94+
uses: actions/checkout@v6
9595
if: env.writable == 0
9696

9797
- name: Setup PHP
@@ -108,7 +108,7 @@ jobs:
108108
run: vendor/bin/rector process --no-progress-bar
109109

110110
- name: Commit changed files
111-
uses: stefanzweifel/git-auto-commit-action@v6
111+
uses: stefanzweifel/git-auto-commit-action@v7
112112
if: env.writable == 1
113113
with:
114114
commit_message: Apply rector changes

.github/workflows/rexlint.yml

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

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Setup PHP
2323
uses: shivammathur/setup-php@v2

.github/workflows/static-analysis.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Add action run link to trigger comment
27-
uses: peter-evans/create-or-update-comment@v4
27+
uses: peter-evans/create-or-update-comment@v5
2828
if: github.event_name == 'repository_dispatch'
2929
with:
3030
token: ${{ secrets.BOT_TOKEN }}
@@ -36,16 +36,16 @@ jobs:
3636
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
3737
3838
- name: Checkout
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
if: env.writable == 1 && github.event_name != 'repository_dispatch'
4141
with:
4242
ref: ${{ github.head_ref }}
4343
token: ${{ secrets.BOT_TOKEN }}
4444
- name: Checkout fork
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
if: env.writable == 0
4747
- name: Checkout on chat commnad
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
if: github.event_name == 'repository_dispatch'
5050
with:
5151
token: ${{ secrets.BOT_TOKEN }}
@@ -77,7 +77,7 @@ jobs:
7777
run: git pull --ff-only --no-tags --depth=1
7878

7979
- name: Commit changed files
80-
uses: stefanzweifel/git-auto-commit-action@v6
80+
uses: stefanzweifel/git-auto-commit-action@v7
8181
if: failure() && steps.baseline.conclusion != 'skipped' && env.writable == 1
8282
with:
8383
commit_message: Update psalm baseline
@@ -94,7 +94,7 @@ jobs:
9494

9595
steps:
9696
- name: Add action run link to trigger comment
97-
uses: peter-evans/create-or-update-comment@v4
97+
uses: peter-evans/create-or-update-comment@v5
9898
if: github.event_name == 'repository_dispatch'
9999
with:
100100
token: ${{ secrets.BOT_TOKEN }}
@@ -106,16 +106,16 @@ jobs:
106106
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
107107
108108
- name: Checkout
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v6
110110
if: env.writable == 1 && github.event_name != 'repository_dispatch'
111111
with:
112112
ref: ${{ github.head_ref }}
113113
token: ${{ secrets.BOT_TOKEN }}
114114
- name: Checkout fork
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116
if: env.writable == 0
117117
- name: Checkout on chat commnad
118-
uses: actions/checkout@v5
118+
uses: actions/checkout@v6
119119
if: github.event_name == 'repository_dispatch'
120120
with:
121121
token: ${{ secrets.BOT_TOKEN }}
@@ -147,7 +147,7 @@ jobs:
147147
run: git pull --ff-only --no-tags --depth=1
148148

149149
- name: Commit changed files
150-
uses: stefanzweifel/git-auto-commit-action@v6
150+
uses: stefanzweifel/git-auto-commit-action@v7
151151
if: failure() && steps.baseline.conclusion != 'skipped' && env.writable == 1
152152
with:
153153
commit_message: Update psalm taint baseline
@@ -164,7 +164,7 @@ jobs:
164164

165165
steps:
166166
- name: Add action run link to trigger comment
167-
uses: peter-evans/create-or-update-comment@v4
167+
uses: peter-evans/create-or-update-comment@v5
168168
if: github.event_name == 'repository_dispatch'
169169
with:
170170
token: ${{ secrets.BOT_TOKEN }}
@@ -176,10 +176,10 @@ jobs:
176176
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
177177
178178
- name: Checkout
179-
uses: actions/checkout@v5
179+
uses: actions/checkout@v6
180180
if: github.event_name != 'repository_dispatch'
181181
- name: Checkout on chat commnad
182-
uses: actions/checkout@v5
182+
uses: actions/checkout@v6
183183
if: github.event_name == 'repository_dispatch'
184184
with:
185185
token: ${{ secrets.BOT_TOKEN }}
@@ -220,7 +220,7 @@ jobs:
220220
run: git pull --ff-only --no-tags --depth=1
221221

222222
- name: Commit changed files
223-
uses: stefanzweifel/git-auto-commit-action@v6
223+
uses: stefanzweifel/git-auto-commit-action@v7
224224
if: failure() && steps.baseline.conclusion != 'skipped' && env.writable == 1
225225
with:
226226
commit_message: Update phpstan baseline

.github/workflows/styles-compile.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Add action run link to trigger comment
27-
uses: peter-evans/create-or-update-comment@v4
27+
uses: peter-evans/create-or-update-comment@v5
2828
if: github.event_name == 'repository_dispatch'
2929
with:
3030
token: ${{ secrets.BOT_TOKEN }}
@@ -33,16 +33,16 @@ jobs:
3333
body: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
3434

3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
if: env.writable == 1 && github.event_name != 'repository_dispatch'
3838
with:
3939
ref: ${{ github.head_ref }}
4040
token: ${{ secrets.BOT_TOKEN }}
4141
- name: Checkout fork
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
if: env.writable == 0
4444
- name: Checkout on chat commnad
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
if: github.event_name == 'repository_dispatch'
4747
with:
4848
token: ${{ secrets.BOT_TOKEN }}
@@ -69,7 +69,7 @@ jobs:
6969
run: php redaxo/bin/console be_style:compile --ansi -v
7070

7171
- name: Commit changed files
72-
uses: stefanzweifel/git-auto-commit-action@v6
72+
uses: stefanzweifel/git-auto-commit-action@v7
7373
if: env.writable == 1
7474
with:
7575
commit_message: Apply be_style:compile

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454

5555
- name: Setup PHP
5656
uses: shivammathur/setup-php@v2

.github/workflows/visual-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Add action run link to trigger comment
26-
uses: peter-evans/create-or-update-comment@v4
26+
uses: peter-evans/create-or-update-comment@v5
2727
if: github.event_name == 'repository_dispatch'
2828
with:
2929
token: ${{ secrets.BOT_TOKEN }}
@@ -32,24 +32,24 @@ jobs:
3232
body: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
3333

3434
- name: Checkout
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
if: env.writable == 1 && github.event_name != 'repository_dispatch'
3737
with:
3838
ref: ${{ github.head_ref }}
3939
token: ${{ secrets.BOT_TOKEN }}
4040
- name: Checkout fork
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
if: env.writable == 0
4343
- name: Checkout on chat commnad
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
if: github.event_name == 'repository_dispatch'
4646
with:
4747
token: ${{ secrets.BOT_TOKEN }}
4848
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
4949
ref: ${{ github.event.client_payload.pull_request.head.ref }}
5050

5151
- name: Setup nodejs
52-
uses: actions/setup-node@v4
52+
uses: actions/setup-node@v6
5353
with:
5454
node-version: 23
5555
cache: npm
@@ -130,7 +130,7 @@ jobs:
130130
git diff --exit-code --name-only .github/tests-visual/
131131
132132
- name: Commit changed files
133-
uses: stefanzweifel/git-auto-commit-action@v6
133+
uses: stefanzweifel/git-auto-commit-action@v7
134134
if: failure() && env.writable == 1
135135
with:
136136
commit_message: Update screenshots

0 commit comments

Comments
 (0)