Changeset 53940
- Timestamp:
- 08/24/2022 04:30:31 PM (2 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r53736 r53940 68 68 69 69 - name: Set up PHP 70 uses: shivammathur/setup-php@ 3eda58347216592f618bb1dff277810b6698e4ca # v2.19.170 uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2 71 71 with: 72 72 php-version: '7.4' … … 86 86 87 87 - name: Cache PHPCS scan cache 88 uses: actions/cache@ c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.488 uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3.0.8 89 89 with: 90 90 path: .cache/phpcs.json … … 143 143 144 144 - name: Install NodeJS 145 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0145 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 146 146 with: 147 147 node-version-file: '.nvmrc' -
trunk/.github/workflows/end-to-end-tests.yml
r53736 r53940 74 74 75 75 - name: Install NodeJS 76 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.076 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 77 77 with: 78 78 node-version-file: '.nvmrc' -
trunk/.github/workflows/javascript-tests.yml
r53736 r53940 68 68 69 69 - name: Install NodeJS 70 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.070 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 71 71 with: 72 72 node-version-file: '.nvmrc' -
trunk/.github/workflows/php-compatibility.yml
r53736 r53940 63 63 64 64 - name: Set up PHP 65 uses: shivammathur/setup-php@ 3eda58347216592f618bb1dff277810b6698e4ca # v2.19.165 uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2 66 66 with: 67 67 php-version: '7.4' … … 81 81 82 82 - name: Cache PHP compatibility scan cache 83 uses: actions/cache@ c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.483 uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3.0.8 84 84 with: 85 85 path: .cache/phpcompat.json -
trunk/.github/workflows/phpunit-tests.yml
r53922 r53940 113 113 114 114 - name: Install NodeJS 115 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0115 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 116 116 with: 117 117 node-version-file: '.nvmrc' … … 132 132 133 133 - name: Cache Composer dependencies 134 uses: actions/cache@ c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4134 uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3.0.8 135 135 env: 136 136 cache-name: cache-composer-dependencies -
trunk/.github/workflows/slack-notifications.yml
r53735 r53940 54 54 - name: Determine the status of the previous attempt 55 55 id: previous-attempt-result 56 uses: actions/github-script@ 7a5c598405937d486b0331594b5da2b14db670da # v6.1.056 uses: actions/github-script@d50f485531ba88479582bc2da03ff424389af5c1 # v6.1.1 57 57 with: 58 58 script: | … … 117 117 - name: Get the commit message 118 118 id: current-commit-message 119 uses: actions/github-script@ 7a5c598405937d486b0331594b5da2b14db670da # v6.1.0119 uses: actions/github-script@d50f485531ba88479582bc2da03ff424389af5c1 # v6.1.1 120 120 if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }} 121 121 with: … … 151 151 steps: 152 152 - name: Post failure notifications to Slack 153 uses: slackapi/slack-github-action@ 34c3fd73326693ef04728f8611669d918a2d781d # v1.19.0153 uses: slackapi/slack-github-action@936158bbe252e9a6062e793ea4609642c966e302 # v1.21.0 154 154 with: 155 155 payload: ${{ needs.prepare.outputs.payload }} … … 167 167 steps: 168 168 - name: Post failure notifications to Slack 169 uses: slackapi/slack-github-action@ 34c3fd73326693ef04728f8611669d918a2d781d # v1.19.0169 uses: slackapi/slack-github-action@936158bbe252e9a6062e793ea4609642c966e302 # v1.21.0 170 170 with: 171 171 payload: ${{ needs.prepare.outputs.payload }} … … 183 183 steps: 184 184 - name: Post success notifications to Slack 185 uses: slackapi/slack-github-action@ 34c3fd73326693ef04728f8611669d918a2d781d # v1.19.0185 uses: slackapi/slack-github-action@936158bbe252e9a6062e793ea4609642c966e302 # v1.21.0 186 186 with: 187 187 payload: ${{ needs.prepare.outputs.payload }} … … 199 199 steps: 200 200 - name: Post cancelled notifications to Slack 201 uses: slackapi/slack-github-action@ 34c3fd73326693ef04728f8611669d918a2d781d # v1.19.0201 uses: slackapi/slack-github-action@936158bbe252e9a6062e793ea4609642c966e302 # v1.21.0 202 202 with: 203 203 payload: ${{ needs.prepare.outputs.payload }} -
trunk/.github/workflows/test-coverage.yml
r53592 r53940 88 88 89 89 - name: Install NodeJS 90 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.090 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 91 91 with: 92 92 node-version-file: '.nvmrc' … … 107 107 108 108 - name: Cache Composer dependencies 109 uses: actions/cache@ c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4109 uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3.0.8 110 110 env: 111 111 cache-name: cache-composer-dependencies -
trunk/.github/workflows/test-npm.yml
r53737 r53940 74 74 75 75 - name: Install NodeJS 76 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.076 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 77 77 with: 78 78 node-version-file: '.nvmrc' … … 134 134 135 135 - name: Install NodeJS 136 uses: actions/setup-node@ eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0136 uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1 137 137 with: 138 138 node-version-file: '.nvmrc' -
trunk/.github/workflows/test-old-branches.yml
r53581 r53940 68 68 steps: 69 69 - name: Dispatch workflow run 70 uses: actions/github-script@ 7a5c598405937d486b0331594b5da2b14db670da # v6.1.070 uses: actions/github-script@d50f485531ba88479582bc2da03ff424389af5c1 # v6.1.1 71 71 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.0' }} 72 72 with: -
trunk/.github/workflows/welcome-new-contributors.yml
r52233 r53940 13 13 14 14 steps: 15 - uses: bubkoo/welcome-action@ 8dbbac2540d155744c90e4e37da6b05ffc9c5e2c# v1.0.315 - uses: bubkoo/welcome-action@e3f444df06502502071d309411d01ba18f916ede # v1.0.3 16 16 with: 17 17 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Note: See TracChangeset
for help on using the changeset viewer.