Make WordPress Core

Changeset 50387


Ignore:
Timestamp:
02/18/2021 06:45:23 PM (4 years ago)
Author:
desrosj
Message:

Build/Test Tools: Update actions within test workflows to the latest versions.

This updates two published GitHub actions to their latest versions:

  • actions/setup-node from v1 to v2.
  • styfle/cancel-workflow-action from 0.5.0 to 0.8.0.

See #50401.

Location:
trunk/.github/workflows
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/coding-standards.yml

    r50298 r50387  
    9999
    100100      - name: Install NodeJS
    101         uses: actions/setup-node@v1
     101        uses: actions/setup-node@v2
    102102        with:
    103103          node-version: 14
  • trunk/.github/workflows/end-to-end-tests.yml

    r50298 r50387  
    4343      - name: Cancel previous runs of this workflow (pull requests only)
    4444        if: ${{ github.event_name == 'pull_request' }}
    45         uses: styfle/cancel-workflow-action@0.5.0
     45        uses: styfle/cancel-workflow-action@0.8.0
    4646        with:
    4747          access_token: ${{ github.token }}
     
    6767
    6868      - name: Install NodeJS
    69         uses: actions/setup-node@v1
     69        uses: actions/setup-node@v2
    7070        with:
    7171          node-version: 14
  • trunk/.github/workflows/javascript-tests.yml

    r50298 r50387  
    3434      - name: Cancel previous runs of this workflow (pull requests only)
    3535        if: ${{ github.event_name == 'pull_request' }}
    36         uses: styfle/cancel-workflow-action@0.5.0
     36        uses: styfle/cancel-workflow-action@0.8.0
    3737        with:
    3838          access_token: ${{ github.token }}
     
    4949
    5050      - name: Install NodeJS
    51         uses: actions/setup-node@v1
     51        uses: actions/setup-node@v2
    5252        with:
    5353          node-version: 14
  • trunk/.github/workflows/phpunit-tests.yml

    r50379 r50387  
    4444      - name: Cancel previous runs of this workflow (pull requests only)
    4545        if: ${{ github.event_name == 'pull_request' }}
    46         uses: styfle/cancel-workflow-action@0.5.0
     46        uses: styfle/cancel-workflow-action@0.8.0
    4747        with:
    4848          access_token: ${{ github.token }}
     
    6565
    6666      - name: Install NodeJS
    67         uses: actions/setup-node@v1
     67        uses: actions/setup-node@v2
    6868        with:
    6969          node-version: 14
     
    170170
    171171      - name: Install NodeJS
    172         uses: actions/setup-node@v1
     172        uses: actions/setup-node@v2
    173173        with:
    174174          node-version: 14
  • trunk/.github/workflows/test-coverage.yml

    r49931 r50387  
    7070
    7171      - name: Install NodeJS
    72         uses: actions/setup-node@v1
     72        uses: actions/setup-node@v2
    7373        with:
    7474          node-version: 14
  • trunk/.github/workflows/verify-npm-on-windows.yml

    r50298 r50387  
    3131      - name: Cancel previous runs of this workflow (pull requests only)
    3232        if: ${{ github.event_name == 'pull_request' }}
    33         uses: styfle/cancel-workflow-action@0.5.0
     33        uses: styfle/cancel-workflow-action@0.8.0
    3434        with:
    3535          access_token: ${{ github.token }}
     
    4747
    4848      - name: Install NodeJS
    49         uses: actions/setup-node@v1
     49        uses: actions/setup-node@v2
    5050        with:
    5151          node-version: 14
Note: See TracChangeset for help on using the changeset viewer.