Skip to content

Commit 6636bf8

Browse files
authored
Updating cache action to v4 due deprecation (#3662)
* Updating cache action due deprecation * Readme and changelog entries
1 parent 9cd5240 commit 6636bf8

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v2
2525

2626
- name: Set up dependencies caching
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: ~/.cache/composer/
3030
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}

.github/workflows/js-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
node-version-file: '.nvmrc'
1717
# enable dependencies caching
18-
- uses: actions/cache@v2
18+
- uses: actions/cache@v4
1919
with:
2020
path: ~/.npm/
2121
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}

.github/workflows/linting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# clone the repository
1616
- uses: actions/checkout@v2
1717
# enable dependencies caching
18-
- uses: actions/cache@v2
18+
- uses: actions/cache@v4
1919
with:
2020
path: ~/.cache/composer/
2121
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
@@ -38,11 +38,11 @@ jobs:
3838
with:
3939
node-version-file: '.nvmrc'
4040
# enable dependencies caching
41-
- uses: actions/cache@v2
41+
- uses: actions/cache@v4
4242
with:
4343
path: ~/.cache/composer/
4444
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
45-
- uses: actions/cache@v2
45+
- uses: actions/cache@v4
4646
with:
4747
path: ~/.npm/
4848
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}

.github/workflows/php-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v2
4747

4848
- name: Set up dependencies caching
49-
uses: actions/cache@v2
49+
uses: actions/cache@v4
5050
with:
5151
path: ~/.cache/composer/
5252
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*** Changelog ***
22

33
= 9.1.0 - xxxx-xx-xx =
4+
* Dev - Updates the GitHub caching action (`actions/cache`) to v4 due deprecation.
45
* Fix - Don't update canceled order status to on-hold when a dispute is opened.
56
* Fix - Correctly sets the dispute opened note when a dispute does not require any further action.
67
* Add - Display Multibanco payment instruction details in Order Received page and Order Confirmation email.

readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ If you get stuck, you can ask for help in the [Plugin Forum](https://wordpress.o
111111
== Changelog ==
112112

113113
= 9.1.0 - xxxx-xx-xx =
114+
* Dev - Updates the GitHub caching action (`actions/cache`) to v4 due deprecation.
114115
* Fix - Don't update canceled order status to on-hold when a dispute is opened.
115116
* Fix - Correctly sets the dispute opened note when a dispute does not require any further action.
116117
* Add - Display Multibanco payment instruction details in Order Received page and Order Confirmation email.

0 commit comments

Comments
 (0)