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 committed Jan 18, 2024
1 parent 55468e2 commit 7b4ecc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache conan
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
key: conan-win-${{ hashFiles('conanfile.txt') }}
path: ~/.conan2/
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache conan
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
key: conan-linux-${{ hashFiles('conanfile.txt') }}
path: ~/.conan2/
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache conan
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
key: conan-mac-${{ hashFiles('conanfile.txt') }}
path: ~/.conan2/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
message("::set-output name=timestamp::${current_date}")
- name: cfamily cache files
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: cfamily-cache
key: cfamily-cache-${{ steps.cfamily_cache_timestamp.outputs.timestamp }}
restore-keys: |
cfamily-cache-
- name: Cache conan
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
key: conan-linux-${{ hashFiles('conanfile.txt') }}
path: ~/.conan2/
Expand Down

0 comments on commit 7b4ecc2

Please sign in to comment.