Skip to content

Commit c174e77

Browse files
authored
Update cache action to v4 in Github CI workflow jobs (#52)
Node.js 16 actions such as "actions/cache@v3" have been deprecated. See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
1 parent d8c86ea commit c174e77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Checkout sources
2020
uses: actions/checkout@v4
2121
- name: Cache
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.cargo/bin/
@@ -44,7 +44,7 @@ jobs:
4444
- name: Checkout sources
4545
uses: actions/checkout@v4
4646
- name: Cache
47-
uses: actions/cache@v3
47+
uses: actions/cache@v4
4848
with:
4949
path: |
5050
~/.cargo/bin/

0 commit comments

Comments
 (0)