Skip to content

Commit 58fc21c

Browse files
authored
ci: upgrade actions/cache to v5 (#40064)
1 parent 2031ba8 commit 58fc21c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/meteor-build/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030

3131
steps:
3232
- name: Cache build
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
id: cache-build
3535
with:
3636
path: /tmp/Rocket.Chat.tar.gz
@@ -69,7 +69,7 @@ runs:
6969
# df -h
7070

7171
- name: Cache vite
72-
uses: actions/cache@v3
72+
uses: actions/cache@v5
7373
if: steps.cache-build.outputs.cache-hit != 'true'
7474
with:
7575
path: ./node_modules/.vite
@@ -78,7 +78,7 @@ runs:
7878
vite-local-cache-${{ runner.arch }}-${{ runner.os }}-
7979
8080
- name: Cache meteor local
81-
uses: actions/cache@v3
81+
uses: actions/cache@v5
8282
if: steps.cache-build.outputs.cache-hit != 'true'
8383
with:
8484
path: ./apps/meteor/.meteor/local
@@ -87,7 +87,7 @@ runs:
8787
meteor-local-cache-${{ runner.arch }}-${{ runner.os }}-${{ inputs.type }}-
8888
8989
- name: Cache meteor
90-
uses: actions/cache@v3
90+
uses: actions/cache@v5
9191
if: steps.cache-build.outputs.cache-hit != 'true'
9292
with:
9393
path: ~/.meteor

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
- name: Cache Node Modules & Deno
4242
if: inputs.cache-modules
4343
id: cache-node-modules
44-
uses: actions/cache@v3
44+
uses: actions/cache@v5
4545
with:
4646
# We need to cache node_modules for all workspaces with "hoistingLimits" defined
4747
path: |

.github/actions/setup-playwright/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55

66
steps:
77
- name: Cache Playwright binaries
8-
uses: actions/cache@v4
8+
uses: actions/cache@v5
99
id: cache-playwright
1010
with:
1111
path: |

0 commit comments

Comments
 (0)