Changeset 54649
- Timestamp:
- 10/19/2022 06:10:43 PM (2 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r54511 r54649 83 83 - name: "Get last Monday's date" 84 84 id: get-date 85 run: echo " ::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"85 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT 86 86 87 87 - name: Cache PHPCS scan cache -
trunk/.github/workflows/php-compatibility.yml
r54511 r54649 78 78 - name: "Get last Monday's date" 79 79 id: get-date 80 run: echo " ::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"80 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT 81 81 82 82 - name: Cache PHP compatibility scan cache -
trunk/.github/workflows/phpunit-tests.yml
r54511 r54649 122 122 - name: "Get last Monday's date" 123 123 id: get-date 124 run: echo " ::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"124 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT 125 125 126 126 - name: Get Composer cache directory 127 127 id: composer-cache 128 run: echo " ::set-output name=dir::$(composer config cache-files-dir)"128 run: echo "composer_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT 129 129 130 130 - name: Cache Composer dependencies … … 133 133 cache-name: cache-composer-dependencies 134 134 with: 135 path: ${{ steps.composer-cache.outputs. dir }}135 path: ${{ steps.composer-cache.outputs.composer_dir }} 136 136 key: ${{ runner.os }}-php-${{ matrix.php }}-date-${{ steps.get-date.outputs.date }}-composer-${{ hashFiles('**/composer.json') }} 137 137 -
trunk/.github/workflows/slack-notifications.yml
r54511 r54649 115 115 - name: Store previous conclusion as an output 116 116 id: previous-conclusion 117 run: echo " ::set-output name=previous_conclusion::${{ steps.previous-attempt-result.outputs.result }}"117 run: echo "previous_conclusion=${{ steps.previous-attempt-result.outputs.result }}" >> $GITHUB_OUTPUT 118 118 119 119 - name: Get the commit message … … 139 139 EOF 140 140 ) 141 echo " ::set-output name=commit_message_escaped::${COMMIT_MESSAGE}"141 echo "commit_message_escaped=${COMMIT_MESSAGE}" >> $GITHUB_OUTPUT 142 142 143 143 - name: Construct payload and store as an output 144 144 id: create-payload 145 run: echo " ::set-output name=payload::{\"workflow_name\":\"${{ github.workflow }}\",\"ref_name\":\"${{ env.CURRENT_BRANCH }}\",\"run_url\":\"https://github.com/WordPress/wordpress-develop/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}\",\"commit_message\":\"${{ steps.commit-message.outputs.commit_message_escaped }}\"}"145 run: echo "payload={\"workflow_name\":\"${{ github.workflow }}\",\"ref_name\":\"${{ env.CURRENT_BRANCH }}\",\"run_url\":\"https://github.com/WordPress/wordpress-develop/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}\",\"commit_message\":\"${{ steps.commit-message.outputs.commit_message_escaped }}\"}" >> $GITHUB_OUTPUT 146 146 147 147 # Posts notifications when a workflow fails. -
trunk/.github/workflows/test-coverage.yml
r54511 r54649 100 100 - name: "Get last Monday's date" 101 101 id: get-date 102 run: echo " ::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"102 run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT 103 103 104 104 - name: Get Composer cache directory 105 105 id: composer-cache 106 run: echo " ::set-output name=dir::$(composer config cache-files-dir)"106 run: echo "composer_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT 107 107 108 108 - name: Cache Composer dependencies … … 111 111 cache-name: cache-composer-dependencies 112 112 with: 113 path: ${{ steps.composer-cache.outputs. dir }}113 path: ${{ steps.composer-cache.outputs.composer_dir }} 114 114 key: ${{ runner.os }}-php-${{ matrix.php }}-date-${{ steps.get-date.outputs.date }}-composer-${{ hashFiles('**/composer.json') }} 115 115
Note: See TracChangeset
for help on using the changeset viewer.