Changeset 61209
- Timestamp:
- 11/11/2025 11:28:13 AM (2 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 38 edited
-
coding-standards.yml (modified) (1 diff)
-
commit-built-file-changes.yml (modified) (1 diff)
-
end-to-end-tests.yml (modified) (1 diff)
-
failed-workflow.yml (modified) (1 diff)
-
install-testing.yml (modified) (2 diffs)
-
javascript-tests.yml (modified) (1 diff)
-
local-docker-environment.yml (modified) (1 diff)
-
performance.yml (modified) (2 diffs)
-
php-compatibility.yml (modified) (1 diff)
-
phpunit-tests.yml (modified) (1 diff)
-
props-bot.yml (modified) (1 diff)
-
pull-request-comments.yml (modified) (3 diffs)
-
reusable-build-package.yml (modified) (2 diffs)
-
reusable-check-built-files.yml (modified) (2 diffs)
-
reusable-cleanup-pull-requests.yml (modified) (2 diffs)
-
reusable-coding-standards-javascript.yml (modified) (1 diff)
-
reusable-coding-standards-php.yml (modified) (2 diffs)
-
reusable-end-to-end-tests.yml (modified) (3 diffs)
-
reusable-javascript-tests.yml (modified) (1 diff)
-
reusable-performance-report-v2.yml (modified) (3 diffs)
-
reusable-performance-test-v2.yml (modified) (4 diffs)
-
reusable-performance.yml (modified) (4 diffs)
-
reusable-php-compatibility.yml (modified) (2 diffs)
-
reusable-phpunit-tests-v1.yml (modified) (2 diffs)
-
reusable-phpunit-tests-v2.yml (modified) (2 diffs)
-
reusable-phpunit-tests-v3.yml (modified) (5 diffs)
-
reusable-test-core-build-process.yml (modified) (3 diffs)
-
reusable-test-gutenberg-build-process.yml (modified) (1 diff)
-
reusable-test-local-docker-environment-v1.yml (modified) (3 diffs)
-
reusable-upgrade-testing.yml (modified) (2 diffs)
-
slack-notifications.yml (modified) (2 diffs)
-
test-and-zip-default-themes.yml (modified) (5 diffs)
-
test-build-processes.yml (modified) (1 diff)
-
test-coverage.yml (modified) (1 diff)
-
test-old-branches.yml (modified) (1 diff)
-
upgrade-develop-testing.yml (modified) (1 diff)
-
upgrade-testing.yml (modified) (1 diff)
-
workflow-lint.yml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r61082 r61209 100 100 steps: 101 101 - name: Dispatch workflow run 102 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1102 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 103 103 with: 104 104 retries: 2 -
trunk/.github/workflows/commit-built-file-changes.yml
r61050 r61209 44 44 steps: 45 45 - name: Download artifact 46 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.146 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 47 47 with: 48 48 script: | -
trunk/.github/workflows/end-to-end-tests.yml
r61082 r61209 104 104 steps: 105 105 - name: Dispatch workflow run 106 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1106 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 107 107 with: 108 108 retries: 2 -
trunk/.github/workflows/failed-workflow.yml
r59720 r61209 31 31 steps: 32 32 - name: Rerun a workflow 33 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.133 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 34 34 with: 35 35 retries: 15 -
trunk/.github/workflows/install-testing.yml
r60692 r61209 119 119 steps: 120 120 - name: Set up PHP ${{ matrix.php }} 121 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.3121 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 122 122 with: 123 123 php-version: '${{ matrix.php }}' … … 172 172 steps: 173 173 - name: Dispatch workflow run 174 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1174 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 175 175 with: 176 176 retries: 2 -
trunk/.github/workflows/javascript-tests.yml
r61082 r61209 93 93 steps: 94 94 - name: Dispatch workflow run 95 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.195 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 96 96 with: 97 97 retries: 2 -
trunk/.github/workflows/local-docker-environment.yml
r61082 r61209 156 156 steps: 157 157 - name: Dispatch workflow run 158 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1158 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 159 159 with: 160 160 retries: 2 -
trunk/.github/workflows/performance.yml
r61082 r61209 70 70 71 71 - name: Set subjects 72 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.172 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 73 73 id: set-subjects 74 74 with: … … 167 167 steps: 168 168 - name: Dispatch workflow run 169 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1169 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 170 170 with: 171 171 retries: 2 -
trunk/.github/workflows/php-compatibility.yml
r61082 r61209 84 84 steps: 85 85 - name: Dispatch workflow run 86 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.186 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 87 87 with: 88 88 retries: 2 -
trunk/.github/workflows/phpunit-tests.yml
r61132 r61209 602 602 steps: 603 603 - name: Dispatch workflow run 604 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1604 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 605 605 with: 606 606 retries: 2 -
trunk/.github/workflows/props-bot.yml
r59720 r61209 77 77 78 78 - name: Remove the props-bot label 79 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.179 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 80 80 if: ${{ github.event.action == 'labeled' && 'props-bot' == github.event.label.name }} 81 81 with: -
trunk/.github/workflows/pull-request-comments.yml
r61135 r61209 91 91 steps: 92 92 - name: Download artifact 93 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.193 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 94 94 with: 95 95 script: | … … 125 125 126 126 - name: Leave a comment about testing with Playground 127 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1127 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 128 128 with: 129 129 script: | … … 192 192 steps: 193 193 - name: Check for Trac ticket and manage comment 194 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1194 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 195 195 with: 196 196 script: | -
trunk/.github/workflows/reusable-build-package.yml
r60692 r61209 36 36 37 37 - name: Set up Node.js 38 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.038 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 39 39 with: 40 40 node-version-file: '.nvmrc' … … 54 54 55 55 - name: Upload ZIP as a GitHub Actions artifact 56 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.256 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 57 57 with: 58 58 name: wordpress-develop -
trunk/.github/workflows/reusable-check-built-files.yml
r60692 r61209 43 43 44 44 - name: Set up Node.js 45 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.045 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 46 46 with: 47 47 node-version-file: '.nvmrc' … … 104 104 # Uploads the diff file as an artifact. 105 105 - name: Upload diff file as artifact 106 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2106 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 107 107 if: ${{ steps.built-file-check.outputs.uncommitted_changes == 'true' }} 108 108 with: -
trunk/.github/workflows/reusable-cleanup-pull-requests.yml
r61101 r61209 47 47 id: linked-prs 48 48 if: ${{ steps.trac-tickets.outputs.fixed_list != '' && steps.git-svn-id.outputs.svn_revision_number != '' }} 49 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.149 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 50 50 with: 51 51 script: | … … 91 91 - name: Comment and close pull requests 92 92 if: ${{ steps.trac-tickets.outputs.fixed_list != '' && steps.git-svn-id.outputs.svn_revision_number != '' }} 93 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.193 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 94 94 with: 95 95 script: | -
trunk/.github/workflows/reusable-coding-standards-javascript.yml
r60692 r61209 41 41 42 42 - name: Set up Node.js 43 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.043 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 44 44 with: 45 45 node-version-file: '.nvmrc' -
trunk/.github/workflows/reusable-coding-standards-php.yml
r60692 r61209 53 53 54 54 - name: Set up PHP 55 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.355 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 56 56 with: 57 57 php-version: ${{ inputs.php-version }} … … 66 66 67 67 - name: Cache PHPCS scan cache 68 uses: actions/cache@0 400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.468 uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 69 69 with: 70 70 path: | -
trunk/.github/workflows/reusable-end-to-end-tests.yml
r60735 r61209 77 77 78 78 - name: Checkout repository 79 uses: actions/checkout@ 11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.279 uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 80 80 with: 81 81 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} … … 83 83 84 84 - name: Set up Node.js 85 uses: actions/setup-node@ cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.085 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 86 86 with: 87 87 node-version-file: '.nvmrc' … … 146 146 147 147 - name: Archive debug artifacts (screenshots, HTML snapshots) 148 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2148 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 149 149 if: always() 150 150 with: -
trunk/.github/workflows/reusable-javascript-tests.yml
r60692 r61209 42 42 43 43 - name: Set up Node.js 44 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.044 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 45 45 with: 46 46 node-version-file: '.nvmrc' -
trunk/.github/workflows/reusable-performance-report-v2.yml
r60692 r61209 63 63 64 64 - name: Set up Node.js 65 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.065 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 66 66 with: 67 67 node-version-file: '.nvmrc' … … 69 69 70 70 - name: Download artifacts 71 uses: actions/download-artifact@ 634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.071 uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 72 72 with: 73 73 pattern: performance-${{ inputs.multisite && 'multisite' || 'single' }}-${{ inputs.memcached && 'memcached' || 'default' }}-* … … 87 87 # Only needed when publishing results. 88 88 if: ${{ inputs.publish }} 89 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.189 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 90 90 id: base-sha 91 91 with: -
trunk/.github/workflows/reusable-performance-test-v2.yml
r60735 r61209 116 116 117 117 - name: Checkout repository 118 uses: actions/checkout@ 11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2118 uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 119 119 with: 120 120 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} … … 123 123 124 124 - name: Set up Node.js 125 uses: actions/setup-node@ cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0125 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 126 126 with: 127 127 node-version-file: '.nvmrc' … … 150 150 - name: Download previous build artifact (target branch or previous commit) 151 151 if: ${{ inputs.subject == 'before' }} 152 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1152 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 153 153 id: get-previous-build 154 154 with: … … 259 259 260 260 - name: Archive artifacts 261 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2261 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 262 262 if: always() 263 263 with: -
trunk/.github/workflows/reusable-performance.yml
r60692 r61209 140 140 141 141 - name: Set up Node.js 142 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0142 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 143 143 with: 144 144 node-version-file: '.nvmrc' … … 233 233 234 234 - name: Download previous build artifact (target branch or previous commit) 235 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1235 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 236 236 id: get-previous-build 237 237 with: … … 313 313 314 314 - name: Archive artifacts 315 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2315 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 316 316 if: always() 317 317 with: … … 330 330 # Only needed when publishing results. 331 331 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/trunk' && ! inputs.memcached && ! inputs.multisite }} 332 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1332 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 333 333 id: base-sha 334 334 with: -
trunk/.github/workflows/reusable-php-compatibility.yml
r60692 r61209 47 47 48 48 - name: Set up PHP 49 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.349 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 50 50 with: 51 51 php-version: ${{ inputs.php-version }} … … 64 64 65 65 - name: Cache PHP compatibility scan cache 66 uses: actions/cache@0 400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.466 uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 67 67 with: 68 68 path: .cache/phpcompat.json -
trunk/.github/workflows/reusable-phpunit-tests-v1.yml
r60801 r61209 104 104 105 105 - name: Set up Node.js 106 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0106 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 107 107 with: 108 108 node-version-file: '.nvmrc' … … 122 122 - name: Cache Composer dependencies 123 123 if: ${{ env.COMPOSER_INSTALL == true }} 124 uses: actions/cache@0 400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4124 uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 125 125 env: 126 126 cache-name: cache-composer-dependencies -
trunk/.github/workflows/reusable-phpunit-tests-v2.yml
r60801 r61209 106 106 107 107 - name: Install Node.js 108 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0108 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 109 109 with: 110 110 node-version-file: '.nvmrc' … … 119 119 120 120 - name: Cache Composer dependencies 121 uses: actions/cache@0 400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4121 uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 122 122 env: 123 123 cache-name: cache-composer-dependencies -
trunk/.github/workflows/reusable-phpunit-tests-v3.yml
r60774 r61209 132 132 133 133 - name: Checkout repository 134 uses: actions/checkout@ 11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2134 uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 135 135 with: 136 136 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} … … 138 138 139 139 - name: Set up Node.js 140 uses: actions/setup-node@ cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0140 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 141 141 with: 142 142 node-version-file: '.nvmrc' … … 151 151 ## 152 152 - name: Set up PHP 153 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.3153 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 154 154 with: 155 155 php-version: '${{ inputs.php }}' … … 235 235 - name: Upload test coverage report to Codecov 236 236 if: ${{ inputs.coverage-report }} 237 uses: codecov/codecov-action@ 18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3237 uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 238 238 with: 239 239 token: ${{ secrets.CODECOV_TOKEN }} … … 244 244 - name: Upload HTML coverage report as artifact 245 245 if: ${{ inputs.coverage-report }} 246 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2246 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 247 247 with: 248 248 name: wp-code-coverage${{ inputs.multisite && '-multisite' || '-single' }}-${{ github.sha }} -
trunk/.github/workflows/reusable-test-core-build-process.yml
r60765 r61209 91 91 92 92 - name: Set up Node.js 93 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.093 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 94 94 with: 95 95 node-version-file: '.nvmrc' … … 133 133 134 134 - name: Upload ZIP as a GitHub Actions artifact 135 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2135 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 136 136 if: ${{ inputs.save-build || inputs.prepare-playground }} 137 137 with: … … 151 151 # leave a comment detailing how to test the PR within WordPress Playground. 152 152 - name: Upload PR number as artifact 153 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2153 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 154 154 if: ${{ inputs.prepare-playground && github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request' }} 155 155 with: -
trunk/.github/workflows/reusable-test-gutenberg-build-process.yml
r60985 r61209 64 64 65 65 - name: Set up Node.js 66 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.066 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 67 67 with: 68 68 node-version-file: '.nvmrc' -
trunk/.github/workflows/reusable-test-local-docker-environment-v1.yml
r61081 r61209 87 87 88 88 - name: Checkout repository 89 uses: actions/checkout@ 11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.289 uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 90 90 with: 91 91 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} … … 93 93 94 94 - name: Set up Node.js 95 uses: actions/setup-node@ cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.095 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 96 96 with: 97 97 node-version-file: '.nvmrc' … … 106 106 ## 107 107 - name: Set up PHP 108 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.3108 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 109 109 with: 110 110 php-version: '${{ inputs.php }}' -
trunk/.github/workflows/reusable-upgrade-testing.yml
r61081 r61209 81 81 steps: 82 82 - name: Set up PHP ${{ inputs.php }} 83 uses: shivammathur/setup-php@ 20529878ed81ef8e78ddf08b480401e6101a850f # v2.35.383 uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f # v2.35.5 84 84 with: 85 85 php-version: '${{ inputs.php }}' … … 117 117 - name: Download build artifact for the current branch 118 118 if: ${{ inputs.new-version == 'develop' }} 119 uses: actions/download-artifact@ 634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0119 uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 120 120 with: 121 121 name: wordpress-develop -
trunk/.github/workflows/slack-notifications.yml
r60692 r61209 61 61 - name: Determine the status of the previous attempt 62 62 id: previous-attempt-result 63 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.163 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 64 64 with: 65 65 retries: 2 … … 131 131 - name: Get the commit message 132 132 id: current-commit-message 133 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1133 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 134 134 if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }} 135 135 with: -
trunk/.github/workflows/test-and-zip-default-themes.yml
r61050 r61209 145 145 146 146 - name: Set up Node.js 147 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0147 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 148 148 with: 149 149 node-version-file: '.nvmrc' … … 177 177 # Uploads the diff file as an artifact. 178 178 - name: Upload diff file as artifact 179 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2179 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 180 180 if: ${{ steps.built-file-check.outputs.uncommitted_changes == 'true' }} 181 181 with: … … 230 230 - name: Set up Node.js for themes needing minification 231 231 if: matrix.theme == 'twentytwentytwo' || matrix.theme == 'twentytwentyfive' 232 uses: actions/setup-node@ 49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0232 uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 233 233 with: 234 234 node-version-file: '.nvmrc' … … 247 247 248 248 - name: Upload theme ZIP as an artifact 249 uses: actions/upload-artifact@ ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2249 uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 250 250 with: 251 251 name: ${{ matrix.theme }} … … 290 290 steps: 291 291 - name: Dispatch workflow run 292 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1292 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 293 293 with: 294 294 retries: 2 -
trunk/.github/workflows/test-build-processes.yml
r61050 r61209 174 174 steps: 175 175 - name: Dispatch workflow run 176 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1176 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 177 177 with: 178 178 retries: 2 -
trunk/.github/workflows/test-coverage.yml
r59720 r61209 100 100 steps: 101 101 - name: Dispatch workflow run 102 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1102 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 103 103 with: 104 104 retries: 2 -
trunk/.github/workflows/test-old-branches.yml
r60341 r61209 124 124 steps: 125 125 - name: Dispatch workflow run 126 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1126 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 127 127 if: ${{ github.event_name == 'push' || ( github.event_name == 'workflow_dispatch' && matrix.branch == inputs.strategy || inputs.strategy == 'all' ) || github.event.schedule == '0 0 15 * *' || matrix.branch == env.CURRENTLY_SUPPORTED_BRANCH }} 128 128 with: -
trunk/.github/workflows/upgrade-develop-testing.yml
r61050 r61209 153 153 steps: 154 154 - name: Dispatch workflow run 155 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1155 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 156 156 with: 157 157 retries: 2 -
trunk/.github/workflows/upgrade-testing.yml
r60952 r61209 260 260 steps: 261 261 - name: Dispatch workflow run 262 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1262 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 263 263 with: 264 264 retries: 2 -
trunk/.github/workflows/workflow-lint.yml
r61050 r61209 74 74 steps: 75 75 - name: Dispatch workflow run 76 uses: actions/github-script@ 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.176 uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 77 77 with: 78 78 retries: 2
Note: See TracChangeset
for help on using the changeset viewer.