Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 18, 2024
1 parent bfc59a8 commit b408704
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
id: asdf_cache
with:
path: ~/.asdf/
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
- uses: asdf-vm/actions/install@v3

- name: Cache flutter dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: flutter_cache
with:
path: .dart_tool/
Expand All @@ -36,7 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Cache asdf
uses: actions/cache@v3
uses: actions/cache@v4
id: asdf_cache
with:
path: ~/.asdf/
Expand All @@ -48,7 +48,7 @@ jobs:
sudo apt update
sudo apt install webp
- name: Cache flutter dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: flutter_cache
with:
path: |
Expand Down

0 comments on commit b408704

Please sign in to comment.