Skip to content

Commit 3cfdddb

Browse files
authored
Merge pull request #956 from nicolasaunai/actions
update GH actions
2 parents ff38b00 + 92f2359 commit 3cfdddb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cmake_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
2929
- name: CCache
3030
id: cache
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.ccache
3434
key: ${{ runner.os }}-ccache-${{ hashFiles('hashFile.txt') }}
3535
restore-keys: ${{ runner.os }}-ccache-
3636

3737
- name: Cache PIP (OSX)
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/Library/Caches/pip
4141
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/cmake_ubuntu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
2626
- name: CCache
2727
id: cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/.ccache
3131
key: ${{ runner.os }}-ccache-${{ hashFiles('hashFile.txt') }}
3232
restore-keys: ${{ runner.os }}-ccache-
3333

3434
- name: Cache PIP (Linux)
35-
uses: actions/cache@v3
35+
uses: actions/cache@v4
3636
with:
3737
path: ~/.cache/pip
3838
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)