Skip to content

Commit 4047faf

Browse files
committed
Build/Test Tools: Update GitHub Actions to their latest versions.
This updates the following GitHub Actions to their latest versions as follows: - `actions/checkout` from `6.0.2` to `7.0.0` - `actions/github-script` from `8.0.0` to `9.0.0` - `shivammathur/setup-php` from `2.37.1` to `2.37.2` Props mukesh27. See #64893. git-svn-id: https://develop.svn.wordpress.org/trunk@62742 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 98b6b9d commit 4047faf

43 files changed

Lines changed: 67 additions & 67 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
100100
steps:
101101
- name: Dispatch workflow run
102-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
102+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
103103
with:
104104
retries: 2
105105
retry-exempt-status-codes: 418

.github/workflows/commit-built-file-changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
actions: read # Required to list and download the artifact uploaded by the triggering workflow run.
4646
steps:
4747
- name: Download artifact
48-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
48+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4949
with:
5050
script: |
5151
const artifacts = await github.rest.actions.listWorkflowRunArtifacts( {
@@ -120,7 +120,7 @@ jobs:
120120
echo "access-token=$ACCESS_TOKEN" >> "$GITHUB_OUTPUT"
121121
122122
- name: Checkout repository
123-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
123+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
124124
if: ${{ steps.artifact-check.outputs.exists == 'true' }}
125125
with:
126126
repository: ${{ github.event.workflow_run.head_repository.full_name }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
)
106106
steps:
107107
- name: Dispatch workflow run
108-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
108+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
109109
with:
110110
retries: 2
111111
retry-exempt-status-codes: 418

.github/workflows/failed-workflow.yml

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

3131
steps:
3232
- name: Rerun a workflow
33-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
33+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
3434
with:
3535
retries: 15
3636
retry-exempt-status-codes: 418

.github/workflows/install-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
119119
steps:
120120
- name: Set up PHP ${{ matrix.php }}
121-
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
121+
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
122122
with:
123123
php-version: '${{ matrix.php }}'
124124
coverage: none
@@ -171,7 +171,7 @@ jobs:
171171
172172
steps:
173173
- name: Dispatch workflow run
174-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
174+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
175175
with:
176176
retries: 2
177177
retry-exempt-status-codes: 418

.github/workflows/javascript-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
9595
steps:
9696
- name: Dispatch workflow run
97-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
97+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
9898
with:
9999
retries: 2
100100
retry-exempt-status-codes: 418

.github/workflows/javascript-type-checking.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
steps:
8787
- name: Dispatch workflow run
88-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
88+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
8989
with:
9090
retries: 2
9191
retry-exempt-status-codes: 418

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
155155
steps:
156156
- name: Dispatch workflow run
157-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
157+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
158158
with:
159159
retries: 2
160160
retry-exempt-status-codes: 418

.github/workflows/performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: echo "TARGET_SHA=$(git rev-parse HEAD^1)" >> "$GITHUB_ENV"
7171

7272
- name: Set subjects
73-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
73+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
7474
id: set-subjects
7575
with:
7676
script: |
@@ -167,7 +167,7 @@ jobs:
167167
168168
steps:
169169
- name: Dispatch workflow run
170-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
170+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
171171
with:
172172
retries: 2
173173
retry-exempt-status-codes: 418

.github/workflows/php-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
8484
steps:
8585
- name: Dispatch workflow run
86-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
86+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
8787
with:
8888
retries: 2
8989
retry-exempt-status-codes: 418

0 commit comments

Comments
 (0)