Skip to content

Commit

Permalink
Update cache action to v4 in Github CI workflow jobs (#52)
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
tehlers committed Apr 1, 2024
1 parent d8c86ea commit c174e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand Down

0 comments on commit c174e77

Please sign in to comment.