Skip to content

Commit 3c70af7

Browse files
committed
Trigger all workflows to run
1 parent 1c44683 commit 3c70af7

13 files changed

+39
-39
lines changed

.github/workflows/coding-standards.yml

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

8181
failed-workflow:
8282
name: Failed workflow tasks
83-
runs-on: ubuntu-24.04
83+
runs-on: ubuntu-latest
8484
permissions:
8585
actions: write
8686
needs: [ phpcs, jshint, slack-notifications ]

.github/workflows/end-to-end-tests.yml

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

8585
failed-workflow:
8686
name: Failed workflow tasks
87-
runs-on: ubuntu-24.04
87+
runs-on: ubuntu-latest
8888
permissions:
8989
actions: write
9090
needs: [ e2e-tests, slack-notifications ]

.github/workflows/javascript-tests.yml

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

7474
failed-workflow:
7575
name: Failed workflow tasks
76-
runs-on: ubuntu-24.04
76+
runs-on: ubuntu-latest
7777
permissions:
7878
actions: write
7979
needs: [ slack-notifications ]

.github/workflows/local-docker-environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
strategy:
8888
fail-fast: false
8989
matrix:
90-
os: [ ubuntu-24.04 ]
90+
os: [ ubuntu-latest ]
9191
memcached: [ false, true ]
9292
php: ${{ fromJSON( needs.build-test-matrix.outputs.php-versions ) }}
9393
db-version: ${{ fromJSON( needs.build-test-matrix.outputs.mysql-versions ) }}
@@ -128,7 +128,7 @@ jobs:
128128

129129
failed-workflow:
130130
name: Failed workflow tasks
131-
runs-on: ubuntu-24.04
131+
runs-on: ubuntu-latest
132132
permissions:
133133
actions: write
134134
needs: [ build-test-matrix, environment-tests-mysql, slack-notifications ]

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ permissions: {}
5050
jobs:
5151
determine-matrix:
5252
name: Determine Matrix
53-
runs-on: ubuntu-24.04
53+
runs-on: ubuntu-latest
5454
if: ${{ ( github.repository == 'WordPress/wordpress-develop' || ( github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' ) ) && ! contains( github.event.before, '00000000' ) }}
5555
permissions: {}
5656
env:
@@ -145,7 +145,7 @@ jobs:
145145

146146
failed-workflow:
147147
name: Failed workflow tasks
148-
runs-on: ubuntu-24.04
148+
runs-on: ubuntu-latest
149149
permissions:
150150
actions: write
151151
needs: [ slack-notifications ]

.github/workflows/php-compatibility.yml

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

6868
failed-workflow:
6969
name: Failed workflow tasks
70-
runs-on: ubuntu-24.04
70+
runs-on: ubuntu-latest
7171
permissions:
7272
actions: write
7373
needs: [ slack-notifications ]

.github/workflows/phpunit-tests.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
os: [ ubuntu-24.04 ]
66+
os: [ ubuntu-latest ]
6767
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
6868
db-type: [ 'mysql' ]
6969
db-version: [ '5.7', '8.0', '8.4' ]
@@ -73,37 +73,37 @@ jobs:
7373

7474
include:
7575
# Include jobs that test with memcached.
76-
- os: ubuntu-24.04
76+
- os: ubuntu-latest
7777
php: '8.3'
7878
db-type: 'mysql'
7979
db-version: '8.4'
8080
tests-domain: 'example.org'
8181
multisite: false
8282
memcached: true
83-
- os: ubuntu-24.04
83+
- os: ubuntu-latest
8484
php: '8.3'
8585
db-type: 'mysql'
8686
db-version: '8.4'
8787
tests-domain: 'example.org'
8888
multisite: true
8989
memcached: true
9090
# Include jobs with a port on the test domain for both single and multisite.
91-
- os: ubuntu-24.04
91+
- os: ubuntu-latest
9292
php: '8.4'
9393
db-type: 'mysql'
9494
db-version: '8.4'
9595
tests-domain: 'example.org:8889'
9696
multisite: false
9797
memcached: false
98-
- os: ubuntu-24.04
98+
- os: ubuntu-latest
9999
php: '8.4'
100100
db-type: 'mysql'
101101
db-version: '8.4'
102102
tests-domain: 'example.org:8889'
103103
multisite: true
104104
memcached: false
105105
# Report test results to the Host Test Results.
106-
- os: ubuntu-24.04
106+
- os: ubuntu-latest
107107
db-type: 'mysql'
108108
db-version: '8.4'
109109
tests-domain: 'example.org'
@@ -134,7 +134,7 @@ jobs:
134134
strategy:
135135
fail-fast: false
136136
matrix:
137-
os: [ ubuntu-24.04 ]
137+
os: [ ubuntu-latest ]
138138
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
139139
db-type: [ 'mariadb' ]
140140
db-version: [ '5.5', '10.3', '10.4', '10.5', '10.6', '10.11', '11.4' ]
@@ -143,13 +143,13 @@ jobs:
143143

144144
include:
145145
# Include jobs that test with memcached.
146-
- os: ubuntu-24.04
146+
- os: ubuntu-latest
147147
php: '8.3'
148148
db-type: 'mariadb'
149149
db-version: '11.4'
150150
multisite: false
151151
memcached: true
152-
- os: ubuntu-24.04
152+
- os: ubuntu-latest
153153
php: '8.3'
154154
db-type: 'mariadb'
155155
db-version: '11.4'
@@ -184,7 +184,7 @@ jobs:
184184
strategy:
185185
fail-fast: false
186186
matrix:
187-
os: [ ubuntu-24.04 ]
187+
os: [ ubuntu-latest ]
188188
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
189189
db-type: [ 'mysql', 'mariadb' ]
190190
db-version: [ '9.1', '11.6' ]
@@ -255,7 +255,7 @@ jobs:
255255

256256
failed-workflow:
257257
name: Failed workflow tasks
258-
runs-on: ubuntu-24.04
258+
runs-on: ubuntu-latest
259259
permissions:
260260
actions: write
261261
needs: [ slack-notifications ]

.github/workflows/props-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# - Removes the props-bot label, if necessary.
4949
props-bot:
5050
name: Generate a list of props
51-
runs-on: ubuntu-24.04
51+
runs-on: ubuntu-latest
5252
permissions:
5353
# The action needs permission `write` permission for PRs in order to add a comment.
5454
pull-requests: write

.github/workflows/pull-request-comments.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions: {}
2222
jobs:
2323
# Comments on a pull request when the author is a first time contributor.
2424
post-welcome-message:
25-
runs-on: ubuntu-24.04
25+
runs-on: ubuntu-latest
2626
permissions:
2727
issues: write
2828
pull-requests: write
@@ -80,7 +80,7 @@ jobs:
8080
# Leaves a comment on a pull request with a link to test the changes in a WordPress Playground instance.
8181
playground-details:
8282
name: Comment on a pull request with Playground details
83-
runs-on: ubuntu-24.04
83+
runs-on: ubuntu-latest
8484
permissions:
8585
issues: write
8686
pull-requests: write
@@ -170,7 +170,7 @@ jobs:
170170
# Manages comments reminding contributors to include a Trac ticket link when opening a pull request.
171171
trac-ticket-check:
172172
name: Manage Trac ticket reminders for pull requests
173-
runs-on: ubuntu-24.04
173+
runs-on: ubuntu-latest
174174
permissions:
175175
issues: write
176176
pull-requests: write

.github/workflows/test-build-processes.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ jobs:
5555
strategy:
5656
fail-fast: false
5757
matrix:
58-
os: [ ubuntu-24.04, windows-2022 ]
58+
os: [ ubuntu-latest, windows-2022 ]
5959
directory: [ 'src', 'build' ]
6060
include:
6161
# Only prepare artifacts for Playground once.
62-
- os: ubuntu-24.04
62+
- os: ubuntu-latest
6363
directory: 'build'
6464
save-build: true
6565
prepare-playground: ${{ github.event_name == 'pull_request' && true || '' }}
6666
# Test certificate build commands with Linux only.
67-
- os: ubuntu-24.04
67+
- os: ubuntu-latest
6868
test-certificates: true
6969

7070
with:
@@ -107,7 +107,7 @@ jobs:
107107
strategy:
108108
fail-fast: false
109109
matrix:
110-
os: [ ubuntu-24.04, windows-2022 ]
110+
os: [ ubuntu-latest, windows-2022 ]
111111
directory: [ 'src', 'build' ]
112112
with:
113113
os: ${{ matrix.os }}
@@ -154,7 +154,7 @@ jobs:
154154

155155
failed-workflow:
156156
name: Failed workflow tasks
157-
runs-on: ubuntu-24.04
157+
runs-on: ubuntu-latest
158158
permissions:
159159
actions: write
160160
needs: [ slack-notifications ]

0 commit comments

Comments
 (0)