Changeset 52183
- Timestamp:
- 11/16/2021 04:08:03 PM (3 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r52179 r52183 63 63 steps: 64 64 - name: Checkout repository 65 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.465 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 66 66 67 67 - name: Set up PHP 68 uses: shivammathur/setup-php@a fefcaf556d98dc7896cca380e181decb609ca44 # v2.10.068 uses: shivammathur/setup-php@ac7d3d7f84d81a029c20ab72d60264bdb7535831 # v2.15.0 69 69 with: 70 70 php-version: '7.4' … … 84 84 85 85 - name: Cache PHPCS scan cache 86 uses: actions/cache@ 26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.486 uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6 87 87 with: 88 88 path: .cache/phpcs.json … … 90 90 91 91 - name: Install Composer dependencies 92 uses: ramsey/composer-install@ 92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.092 uses: ramsey/composer-install@a7320a0581dcd0432930c48a0e7ced67e6ec17e8 # v1.3.0 93 93 with: 94 94 composer-options: "--no-progress --no-ansi --no-interaction" … … 130 130 steps: 131 131 - name: Checkout repository 132 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4132 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 133 133 134 134 - name: Log debug information … … 140 140 141 141 - name: Install NodeJS 142 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.2142 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 143 143 with: 144 144 node-version: 14 -
trunk/.github/workflows/end-to-end-tests.yml
r52130 r52183 57 57 58 58 - name: Checkout repository 59 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.459 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 60 60 61 61 - name: Log debug information … … 71 71 72 72 - name: Install NodeJS 73 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.273 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 74 74 with: 75 75 node-version: 14 -
trunk/.github/workflows/javascript-tests.yml
r52130 r52183 56 56 steps: 57 57 - name: Checkout repository 58 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.458 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 59 59 60 60 - name: Log debug information … … 66 66 67 67 - name: Install NodeJS 68 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.268 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 69 69 with: 70 70 node-version: 14 -
trunk/.github/workflows/php-compatibility.yml
r52179 r52183 57 57 steps: 58 58 - name: Checkout repository 59 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.459 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 60 60 61 61 - name: Set up PHP 62 uses: shivammathur/setup-php@a fefcaf556d98dc7896cca380e181decb609ca44 # v2.10.062 uses: shivammathur/setup-php@ac7d3d7f84d81a029c20ab72d60264bdb7535831 # v2.15.0 63 63 with: 64 64 php-version: '7.4' … … 78 78 79 79 - name: Cache PHP compatibility scan cache 80 uses: actions/cache@ 26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.480 uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6 81 81 with: 82 82 path: .cache/phpcompat.json … … 84 84 85 85 - name: Install Composer dependencies 86 uses: ramsey/composer-install@ 92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.086 uses: ramsey/composer-install@a7320a0581dcd0432930c48a0e7ced67e6ec17e8 # v1.3.0 87 87 with: 88 88 composer-options: "--no-progress --no-ansi --no-interaction" -
trunk/.github/workflows/phpunit-tests.yml
r52130 r52183 110 110 111 111 - name: Checkout repository 112 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4112 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 113 113 114 114 - name: Install NodeJS 115 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.2115 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 116 116 with: 117 117 node-version: 14 … … 132 132 133 133 - name: Cache Composer dependencies 134 uses: actions/cache@ 26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4134 uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6 135 135 env: 136 136 cache-name: cache-composer-dependencies … … 231 231 - name: Checkout the WordPress Test Reporter 232 232 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }} 233 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4233 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 234 234 with: 235 235 repository: 'WordPress/phpunit-test-runner' -
trunk/.github/workflows/slack-notifications.yml
r52002 r52183 135 135 steps: 136 136 - name: Post failure notifications to Slack 137 uses: slackapi/slack-github-action@ d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0137 uses: slackapi/slack-github-action@410ae57cff5c6b682b106440be0e6c7eb8c98c9d # v1.16.0 138 138 with: 139 139 payload: ${{ needs.prepare.outputs.payload }} … … 150 150 steps: 151 151 - name: Post failure notifications to Slack 152 uses: slackapi/slack-github-action@ d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0152 uses: slackapi/slack-github-action@410ae57cff5c6b682b106440be0e6c7eb8c98c9d # v1.16.0 153 153 with: 154 154 payload: ${{ needs.prepare.outputs.payload }} … … 165 165 steps: 166 166 - name: Post success notifications to Slack 167 uses: slackapi/slack-github-action@ d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0167 uses: slackapi/slack-github-action@410ae57cff5c6b682b106440be0e6c7eb8c98c9d # v1.16.0 168 168 with: 169 169 payload: ${{ needs.prepare.outputs.payload }} … … 180 180 steps: 181 181 - name: Post cancelled notifications to Slack 182 uses: slackapi/slack-github-action@ d5d276d7ae0f38f29322b80da9baf985cc80f8b1 # v1.15.0182 uses: slackapi/slack-github-action@410ae57cff5c6b682b106440be0e6c7eb8c98c9d # v1.16.0 183 183 with: 184 184 payload: ${{ needs.prepare.outputs.payload }} -
trunk/.github/workflows/test-coverage.yml
r52130 r52183 61 61 62 62 - name: Checkout repository 63 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.463 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 64 64 65 65 - name: Log debug information … … 77 77 78 78 - name: Install NodeJS 79 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.279 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 80 80 with: 81 81 node-version: 14 … … 96 96 97 97 - name: Cache Composer dependencies 98 uses: actions/cache@ 26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.498 uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # v2.1.6 99 99 env: 100 100 cache-name: cache-composer-dependencies … … 150 150 - name: Upload single site report to Codecov 151 151 if: ${{ ! matrix.multisite }} 152 uses: codecov/codecov-action@ e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1152 uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 153 153 with: 154 154 file: wp-code-coverage-single-clover-${{ github.sha }}.xml … … 164 164 - name: Upload multisite report to Codecov 165 165 if: ${{ matrix.multisite }} 166 uses: codecov/codecov-action@ e156083f13aff6830c92fc5faa23505779fbf649 # v1.2.1166 uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0 167 167 with: 168 168 file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml -
trunk/.github/workflows/test-npm.yml
r52130 r52183 59 59 steps: 60 60 - name: Checkout repository 61 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.461 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 62 62 63 63 - name: Log debug information … … 70 70 71 71 - name: Install NodeJS 72 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.272 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 73 73 with: 74 74 node-version: 14 … … 117 117 steps: 118 118 - name: Checkout repository 119 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4119 uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 120 120 121 121 - name: Log debug information … … 128 128 129 129 - name: Install NodeJS 130 uses: actions/setup-node@ 38d90ce44d5275ad62cc48384b3d8a58c500bb5f # v2.2.2130 uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # v2.4.1 131 131 with: 132 132 node-version: 14 -
trunk/.github/workflows/test-old-branches.yml
r52130 r52183 58 58 steps: 59 59 - name: Dispatch workflow run 60 uses: actions/github-script@4 7f7cf65b5ced0830a325f705cad64f2f58dddf7 # v3.1.060 uses: actions/github-script@441359b1a30438de65712c2fbca0abe4816fa667 # v5.0.0 61 61 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '5.7' }} 62 62 with: 63 63 github-token: ${{ secrets.GHA_OLD_BRANCH_DISPATCH }} 64 64 script: | 65 github. actions.createWorkflowDispatch({65 github.rest.actions.createWorkflowDispatch({ 66 66 owner: context.repo.owner, 67 67 repo: context.repo.repo,
Note: See TracChangeset
for help on using the changeset viewer.