Skip to content

Commit f68a79e

Browse files
committed
Build/Test Tools: Update 3rd-party GitHub Actions.
This updates the following GitHub Actions to their latest versions: - `wow-actions/welcome` - `actions/setup-node` - `actions/cache` See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@59354 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 4c818a2 commit f68a79e

13 files changed

+15
-15
lines changed

.github/workflows/pull-request-comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name == 'pull_request_target' }}
3131
steps:
3232
- name: Post a welcome comment
33-
uses: wow-actions/welcome@72817eb31cda1de60f51893d80e2e82ce57f7e76 # v1.3.0
33+
uses: wow-actions/welcome@68019c2c271561f63162fea75bb7707ef8a02c85 # v1.3.1
3434
with:
3535
FIRST_PR_REACTIONS: 'hooray'
3636
FIRST_PR_COMMENT: >

.github/workflows/reusable-coding-standards-javascript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
3636

3737
- name: Set up Node.js
38-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
38+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
3939
with:
4040
node-version-file: '.nvmrc'
4141
cache: npm

.github/workflows/reusable-coding-standards-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT
6161

6262
- name: Cache PHPCS scan cache
63-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
63+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
6464
with:
6565
path: |
6666
.cache/phpcs-src.json

.github/workflows/reusable-end-to-end-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
7373

7474
- name: Set up Node.js
75-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
75+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
7676
with:
7777
node-version-file: '.nvmrc'
7878
cache: npm

.github/workflows/reusable-javascript-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
3131

3232
- name: Set up Node.js
33-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
33+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
3434
with:
3535
node-version-file: '.nvmrc'
3636
cache: npm

.github/workflows/reusable-performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
run: echo "TARGET_SHA=$(git rev-parse HEAD^1)" >> $GITHUB_ENV
123123

124124
- name: Set up Node.js
125-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
125+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
126126
with:
127127
node-version-file: '.nvmrc'
128128
cache: npm

.github/workflows/reusable-php-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT
5959

6060
- name: Cache PHP compatibility scan cache
61-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
61+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
6262
with:
6363
path: .cache/phpcompat.json
6464
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-php-${{ inputs.php-version }}-phpcompat-cache-${{ hashFiles('**/composer.json', 'phpcompat.xml.dist') }}

.github/workflows/reusable-phpunit-tests-v1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
9696

9797
- name: Set up Node.js
98-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
98+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
9999
with:
100100
node-version-file: '.nvmrc'
101101
cache: npm
@@ -108,7 +108,7 @@ jobs:
108108

109109
- name: Cache Composer dependencies
110110
if: ${{ env.COMPOSER_INSTALL == true }}
111-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
111+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
112112
env:
113113
cache-name: cache-composer-dependencies
114114
with:

.github/workflows/reusable-phpunit-tests-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
9999

100100
- name: Install Node.js
101-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
101+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
102102
with:
103103
node-version-file: '.nvmrc'
104104
cache: npm
@@ -111,7 +111,7 @@ jobs:
111111
run: echo "composer_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
112112

113113
- name: Cache Composer dependencies
114-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
114+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
115115
env:
116116
cache-name: cache-composer-dependencies
117117
with:

.github/workflows/reusable-phpunit-tests-v3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
122122

123123
- name: Set up Node.js
124-
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
124+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
125125
with:
126126
node-version-file: '.nvmrc'
127127
cache: npm

0 commit comments

Comments
 (0)