Make WordPress Core


Ignore:
Timestamp:
10/04/2022 01:25:42 AM (2 years ago)
Author:
desrosj
Message:

Build/Test Tools: Update github-script action to the latest version.

The latest version of the actions/github-script action fixes an issue where passing options to the action would remove any default values not passed (see https://github.com/actions/github-script/pull/293).

This also includes updates to other third-party actions, bringing all third-party versions in Core workflows to their latest versions:

  • actions/cache
  • actions/setup-node
  • codecov/codecov-action

See #55652.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/test-coverage.yml

    r54343 r54373  
    8888
    8989      - name: Install NodeJS
    90         uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # v3.4.1
     90        uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # v3.5.0
    9191        with:
    9292          node-version-file: '.nvmrc'
     
    107107
    108108      - name: Cache Composer dependencies
    109         uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3.0.8
     109        uses: actions/cache@56461b9eb0f8438fd15c7a9968e3c9ebb18ceff1 # v3.0.10
    110110        env:
    111111          cache-name: cache-composer-dependencies
     
    161161      - name: Upload single site report to Codecov
    162162        if: ${{ ! matrix.multisite && github.event_name != 'pull_request' }}
    163         uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378 # v3.1.0
     163        uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
    164164        with:
    165165          file: wp-code-coverage-single-clover-${{ github.sha }}.xml
     
    176176      - name: Upload multisite report to Codecov
    177177        if: ${{ matrix.multisite && github.event_name != 'pull_request' }}
    178         uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378 # v3.1.0
     178        uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
    179179        with:
    180180          file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml
     
    210210    steps:
    211211      - name: Dispatch workflow run
    212         uses: actions/github-script@d4560e157075e2d93aa3022b5b51a42a880f1f93 # v6.3.0
     212        uses: actions/github-script@7dff1a87643417cf3b95bb10b29f4c4bc60d8ebd # v6.3.1
    213213        with:
    214214          retries: 2
Note: See TracChangeset for help on using the changeset viewer.