Make WordPress Core


Ignore:
Timestamp:
01/26/2024 01:48:01 PM (11 months ago)
Author:
desrosj
Message:

Build/Test Tools: Update third-party GitHub Actions.

This updates the following third-party GitHub Actions to their latest versions:

  • actions/setup-node from 3.8.1 to 4.0.1
  • actions/upload-artifact from 3.1.2 to 4.3.0
  • shivammathur/setup-php from 2.28.0 to 2.29.0
  • actions/cache from 3.3.2 to 4.0.0
  • codecov/codecov-action from 3.1.4 to 3.1.5

Most notably, these updates silence newly encountered notices as a result of GitHub beginning to transition away from Node.js 16 to Node.js 20 (see https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/).

Props swissspidy.
See #59805.

File:
1 edited

Legend:

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

    r57249 r57362  
    8282
    8383      - name: Set up Node.js
    84         uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
     84        uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
    8585        with:
    8686          node-version-file: '.nvmrc'
     
    9595      ##
    9696      - name: Set up PHP
    97         uses: shivammathur/setup-php@e6f75134d35752277f093989e72e140eaa222f35 # v2.28.0
     97        uses: shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # v2.29.0
    9898        with:
    9999          php-version: '7.4'
     
    153153      - name: Upload single site report to Codecov
    154154        if: ${{ ! matrix.multisite && github.event_name != 'pull_request' }}
    155         uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
     155        uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # v3.1.5
    156156        with:
    157157          file: wp-code-coverage-single-clover-${{ github.sha }}.xml
     
    168168      - name: Upload multisite report to Codecov
    169169        if: ${{ matrix.multisite && github.event_name != 'pull_request' }}
    170         uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
     170        uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # v3.1.5
    171171        with:
    172172          file: wp-code-coverage-multisite-clover-${{ github.sha }}.xml
Note: See TracChangeset for help on using the changeset viewer.