Skip to content

Commit a5b555a

Browse files
committed
Build/Test Tools: Update the actions/cache action.
This correctly updates the `actions/cache` action. [53581] updated the inline comment to the latest version but did not update the actual SHA value correctly. Follow up to [53581]. See #55652. git-svn-id: https://develop.svn.wordpress.org/trunk@53582 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 6d9ede9 commit a5b555a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
run: echo "::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"
8585

8686
- name: Cache PHPCS scan cache
87-
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0 # v3.0.4
87+
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4
8888
with:
8989
path: .cache/phpcs.json
9090
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }}

.github/workflows/php-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
run: echo "::set-output name=date::$(/bin/date -u --date='last Mon' "+%F")"
7979

8080
- name: Cache PHP compatibility scan cache
81-
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0 # v3.0.4
81+
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4
8282
with:
8383
path: .cache/phpcompat.json
8484
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcompat-cache-${{ hashFiles('**/composer.json', 'phpcompat.xml.dist') }}

.github/workflows/phpunit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
133133

134134
- name: Cache Composer dependencies
135-
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0 # v3.0.4
135+
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4
136136
env:
137137
cache-name: cache-composer-dependencies
138138
with:

.github/workflows/test-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
107107

108108
- name: Cache Composer dependencies
109-
uses: actions/cache@136d96b4aee02b1f0de3ba493b1d47135042d9c0 # v3.0.4
109+
uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4
110110
env:
111111
cache-name: cache-composer-dependencies
112112
with:

0 commit comments

Comments
 (0)