Skip to content

Commit dbb5887

Browse files
committed
Update action cache from @v2 to @v4 in Github Action workflows
<!-- Bellow section will be used to automatically generate changelog, please do not modify HTML code structure --> <h2>Change Log</h2> <div id="change-log"> <h4>Added</h4> <ul id="added"> <!-- <li>Feature making everything better</li> --> </ul> <h4>Fixed</h4> <ul id="fixed"> <!-- <li>Behavior that was incorrect</li> --> </ul> <h4>Changed</h4> <ul id="changed"> <li>Update action cache from @v2 to @v4 in Github Action workflows</li> </ul> <h4>Removed</h4> <ul id="removed"> <!-- <li>Something</li> --> </ul> <h4>Deprecated</h4> <ul id="deprecated"> <!-- <li>Something is from now deprecated</li> --> </ul> <h4>Security</h4> <ul id="security"> <!-- <li>Something that was a security issue, is not an issue anymore</li> --> </ul> </div> <hr/> <h2>Description</h2> <!-- Please provide a short description of changes in this section, feel free to use markdown syntax --> --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/coduo/php-humanizer?shareId=XXXX-XXXX-XXXX-XXXX).
1 parent a57436f commit dbb5887

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/changelog-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: "actions/checkout@v2"
2121

2222
- name: "Restore Automation cache"
23-
uses: "actions/cache@v2"
23+
uses: "actions/cache@v4"
2424
with:
2525
path: |
2626
cache

.github/workflows/static-analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
echo "::set-output name=dir::$(composer config cache-files-dir)"
4242
4343
- name: "Cache Composer dependencies"
44-
uses: "actions/cache@v2"
44+
uses: "actions/cache@v4"
4545
with:
4646
path: |
4747
${{ steps.composer-cache.outputs.dir }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "::set-output name=dir::$(composer config cache-files-dir)"
4646
4747
- name: "Cache Composer dependencies"
48-
uses: "actions/cache@v2"
48+
uses: "actions/cache@v4"
4949
with:
5050
path: |
5151
${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)