Changeset 56537
- Timestamp:
- 09/07/2023 04:49:18 PM (13 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r56388 r56537 74 74 75 75 - name: Set up PHP 76 uses: shivammathur/setup-php@ d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.076 uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2.25.4 77 77 with: 78 78 php-version: '7.4' … … 87 87 88 88 - name: Cache PHPCS scan cache 89 uses: actions/cache@ 69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.689 uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 90 90 with: 91 91 path: | … … 149 149 150 150 - name: Set up Node.js 151 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0151 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 152 152 with: 153 153 node-version-file: '.nvmrc' -
trunk/.github/workflows/end-to-end-tests.yml
r56388 r56537 72 72 73 73 - name: Set up Node.js 74 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.074 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 75 75 with: 76 76 node-version-file: '.nvmrc' -
trunk/.github/workflows/javascript-tests.yml
r56402 r56537 66 66 67 67 - name: Set up Node.js 68 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.068 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 69 69 with: 70 70 node-version-file: '.nvmrc' -
trunk/.github/workflows/performance.yml
r56506 r56537 98 98 99 99 - name: Checkout repository 100 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 100 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 101 with: 102 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 101 103 102 104 - name: Set up Node.js 103 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0105 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 104 106 with: 105 107 node-version-file: '.nvmrc' -
trunk/.github/workflows/php-compatibility.yml
r56402 r56537 66 66 steps: 67 67 - name: Checkout repository 68 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 68 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 69 with: 70 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 69 71 70 72 - name: Set up PHP 71 uses: shivammathur/setup-php@ d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.073 uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2.25.4 72 74 with: 73 75 php-version: '7.4' … … 86 88 87 89 - name: Cache PHP compatibility scan cache 88 uses: actions/cache@ 69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.690 uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 89 91 with: 90 92 path: .cache/phpcompat.json -
trunk/.github/workflows/phpunit-tests-run.yml
r56498 r56537 86 86 87 87 - name: Checkout repository 88 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 88 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 89 with: 90 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 89 91 90 92 - name: Set up Node.js 91 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.093 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 92 94 with: 93 95 node-version-file: '.nvmrc' … … 102 104 ## 103 105 - name: Set up PHP 104 uses: shivammathur/setup-php@ d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.0106 uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2.25.4 105 107 with: 106 108 php-version: '${{ inputs.php }}' … … 174 176 - name: Checkout the WordPress Test Reporter 175 177 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && inputs.report }} 176 uses: actions/checkout@ 8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2178 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 177 179 with: 178 180 repository: 'WordPress/phpunit-test-runner' 179 181 path: 'test-runner' 182 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 180 183 181 184 - name: Submit test results to the WordPress.org host test results -
trunk/.github/workflows/slack-notifications.yml
r56407 r56537 162 162 steps: 163 163 - name: Post failure notifications to Slack 164 uses: slackapi/slack-github-action@ 007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0164 uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 165 165 with: 166 166 payload: ${{ needs.prepare.outputs.payload }} … … 178 178 steps: 179 179 - name: Post failure notifications to Slack 180 uses: slackapi/slack-github-action@ 007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0180 uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 181 181 with: 182 182 payload: ${{ needs.prepare.outputs.payload }} … … 194 194 steps: 195 195 - name: Post success notifications to Slack 196 uses: slackapi/slack-github-action@ 007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0196 uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 197 197 with: 198 198 payload: ${{ needs.prepare.outputs.payload }} … … 210 210 steps: 211 211 - name: Post cancelled notifications to Slack 212 uses: slackapi/slack-github-action@ 007b2c3c751a190b6f0f040e47ed024deaa72844 # v1.23.0212 uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 213 213 with: 214 214 payload: ${{ needs.prepare.outputs.payload }} -
trunk/.github/workflows/test-and-zip-default-themes.yml
r56402 r56537 80 80 steps: 81 81 - name: Checkout repository 82 uses: actions/checkout@ 8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.282 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 83 83 with: 84 84 ref: ${{ github.event_name == 'workflow_dispatch' && inputs.branch || github.ref }} 85 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 85 86 86 87 - name: Set up Node.js 87 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.088 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 88 89 with: 89 90 node-version-file: '.nvmrc' … … 134 135 steps: 135 136 - name: Checkout repository 136 uses: actions/checkout@ 8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2137 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 137 138 with: 138 139 ref: ${{ github.event_name == 'workflow_dispatch' && inputs.branch || github.ref }} 140 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 139 141 140 142 - name: Upload theme ZIP as an artifact -
trunk/.github/workflows/test-coverage.yml
r56402 r56537 77 77 78 78 - name: Checkout repository 79 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 79 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 80 with: 81 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 80 82 81 83 - name: Set up Node.js 82 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.084 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 83 85 with: 84 86 node-version-file: '.nvmrc' … … 93 95 ## 94 96 - name: Set up PHP 95 uses: shivammathur/setup-php@ d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.097 uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2.25.4 96 98 with: 97 99 php-version: '7.4' … … 152 154 - name: Upload single site report to Codecov 153 155 if: ${{ ! matrix.multisite && github.event_name != 'pull_request' }} 154 uses: codecov/codecov-action@ d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1156 uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 155 157 with: 156 158 file: wp-code-coverage-single-clover-${{ github.sha }}.xml … … 167 169 - name: Upload multisite report to Codecov 168 170 if: ${{ matrix.multisite && github.event_name != 'pull_request' }} 169 uses: codecov/codecov-action@ d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1171 uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 170 172 with: 171 173 file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml -
trunk/.github/workflows/test-npm.yml
r56402 r56537 69 69 steps: 70 70 - name: Checkout repository 71 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 71 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 72 with: 73 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 72 74 73 75 - name: Set up Node.js 74 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.076 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 75 77 with: 76 78 node-version-file: '.nvmrc' … … 135 137 steps: 136 138 - name: Checkout repository 137 uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 139 uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 140 with: 141 show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} 138 142 139 143 - name: Set up Node.js 140 uses: actions/setup-node@ 64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0144 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 141 145 with: 142 146 node-version-file: '.nvmrc'
Note: See TracChangeset
for help on using the changeset viewer.