Skip to content

Commit d0dfc76

Browse files
committed
Build/Test Tools: Update some third-party GitHub Actions.
This updates the following GitHub Actions: - `actions/cache` from `5.0.3` to `5.0.4` - `codecov/codecov-action` from `5.5.2` to `5.5.3` This resolves the final `node20`-related deprecation notices being triggered by GitHub Actions. See #64227. git-svn-id: https://develop.svn.wordpress.org/trunk@62053 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a58af85 commit d0dfc76

7 files changed

+9
-9
lines changed

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

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

6767
- name: Cache PHPCS scan cache
68-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
68+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6969
with:
7070
path: |
7171
.cache/phpcs-src.json

.github/workflows/reusable-javascript-type-checking-v1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: npm ci --ignore-scripts
5454

5555
- name: Cache TypeScript build info
56-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
56+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
5757
with:
5858
path: |
5959
*.tsbuildinfo
@@ -65,7 +65,7 @@ jobs:
6565
run: npm run typecheck:js
6666

6767
- name: "Save result cache"
68-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
68+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6969
if: ${{ !cancelled() }}
7070
with:
7171
path: |

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

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

6565
- name: Cache PHP compatibility scan cache
66-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
66+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
6767
with:
6868
path: .cache/phpcompat.json
6969
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-php-${{ inputs.php-version }}-phpcompat-cache-${{ hashFiles('**/composer.json', 'phpcompat.xml.dist') }}

.github/workflows/reusable-phpstan-static-analysis-v1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
run: npm run build:dev
8888

8989
- name: Cache PHP Static Analysis scan cache
90-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
90+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
9191
with:
9292
path: .cache # This is defined in the base.neon file.
9393
key: "phpstan-result-cache-${{ github.run_id }}"
@@ -99,7 +99,7 @@ jobs:
9999
run: composer run phpstan -- -vvv --error-format=checkstyle | cs2pr --errors-as-warnings --graceful-warnings
100100

101101
- name: "Save result cache"
102-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
102+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
103103
if: ${{ !cancelled() }}
104104
with:
105105
path: .cache

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Cache Composer dependencies
123123
if: ${{ env.COMPOSER_INSTALL == true }}
124-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
124+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
125125
env:
126126
cache-name: cache-composer-dependencies
127127
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
run: echo "composer_dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
119119

120120
- name: Cache Composer dependencies
121-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
121+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
122122
env:
123123
cache-name: cache-composer-dependencies
124124
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237

238238
- name: Upload test coverage report to Codecov
239239
if: ${{ inputs.coverage-report }}
240-
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
240+
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
241241
with:
242242
token: ${{ secrets.CODECOV_TOKEN }}
243243
files: wp-code-coverage${{ inputs.multisite && '-multisite' || '-single' }}-${{ github.sha }}.xml

0 commit comments

Comments
 (0)