Make WordPress Core

Changeset 55487


Ignore:
Timestamp:
03/08/2023 04:33:13 PM (19 months ago)
Author:
desrosj
Message:

Build/Test Tools: Update several GitHub Actions.

This updates three GitHub Actions to their latest versions:

  • shivammathur/setup-php
  • actions/cache
  • wow-actions/welcome

The welcome action now uses the GITHUB_TOKEN by default, so it no longer needs to be passed manually.

See #57572.

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

Legend:

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

    r55152 r55487  
    6868
    6969      - name: Set up PHP
    70         uses: shivammathur/setup-php@8e2ac35f639d3e794c1da1f28999385ab6fdf0fc # v2.23.0
     70        uses: shivammathur/setup-php@d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.0
    7171        with:
    7272          php-version: '7.4'
     
    8181
    8282      - name: Cache PHPCS scan cache
    83         uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 # v3.2.3
     83        uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.6
    8484        with:
    8585          path: |
  • trunk/.github/workflows/php-compatibility.yml

    r55152 r55487  
    6363
    6464      - name: Set up PHP
    65         uses: shivammathur/setup-php@8e2ac35f639d3e794c1da1f28999385ab6fdf0fc # v2.23.0
     65        uses: shivammathur/setup-php@d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.0
    6666        with:
    6767          php-version: '7.4'
     
    8080
    8181      - name: Cache PHP compatibility scan cache
    82         uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12 # v3.2.3
     82        uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # v3.2.6
    8383        with:
    8484          path: .cache/phpcompat.json
  • trunk/.github/workflows/phpunit-tests.yml

    r55152 r55487  
    121121      ##
    122122      - name: Set up PHP
    123         uses: shivammathur/setup-php@8e2ac35f639d3e794c1da1f28999385ab6fdf0fc # v2.23.0
     123        uses: shivammathur/setup-php@d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.0
    124124        with:
    125125          php-version: '${{ matrix.php }}'
  • trunk/.github/workflows/test-coverage.yml

    r55152 r55487  
    8787      ##
    8888      - name: Set up PHP
    89         uses: shivammathur/setup-php@8e2ac35f639d3e794c1da1f28999385ab6fdf0fc # v2.23.0
     89        uses: shivammathur/setup-php@d30ad8b1843ace22e6698ab99bbafaa747b6bd0d # v2.24.0
    9090        with:
    9191          php-version: '7.4'
  • trunk/.github/workflows/welcome-new-contributors.yml

    r54651 r55487  
    1313
    1414    steps:
    15       - uses: wow-actions/welcome@fafa00fbd13d9c5d0fbd761c249153506c62bcd8 # v1.1.0
     15      - uses: wow-actions/welcome@72817eb31cda1de60f51893d80e2e82ce57f7e76 # v1.3.0
    1616        with:
    17           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
    1817          FIRST_PR_COMMENT: >
    1918            Hi @{{ author }}! 👋
Note: See TracChangeset for help on using the changeset viewer.