Skip to content

Commit e3ae8c1

Browse files
committed
direct path with no globs
1 parent 392b070 commit e3ae8c1

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/emscripten.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ jobs:
5959
uses: actions/cache@v4
6060
with:
6161
path: ${{env.CPM_SOURCE_CACHE}}
62-
key: ${{ runner.os }}-emscripten-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
62+
key: ${{ runner.os }}-emscripten-cpm-${{ hashFiles('cmake/CPM.cmake') }}
6363

6464
- name: create Conan cache
6565
id: cache-conan
6666
uses: actions/cache@v4
6767
with:
6868
path: /home/runner/.conan2
69-
key: ${{ runner.os }}-emscripten-conan-${{ hashFiles('**/conanfile.py') }}
69+
key: ${{ runner.os }}-emscripten-conan-${{ hashFiles('conanfile.py') }}
7070

7171
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
7272
name: Conan profile detect --force

.github/workflows/linux-clang.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
uses: actions/cache@v3
5252
with:
5353
path: ${{env.CPM_SOURCE_CACHE}}
54-
key: ${{ runner.os }}-clang-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
54+
key: ${{ runner.os }}-clang-cpm-${{ hashFiles('cmake/CPM.cmake') }}
5555

5656
- name: create Conan cache
5757
id: cache-conan
5858
uses: actions/cache@v3
5959
with:
6060
path: /home/runner/.conan2
61-
key: ${{ runner.os }}-clang-conan-${{ hashFiles('**/conanfile.py') }}
61+
key: ${{ runner.os }}-clang-conan-${{ hashFiles('conanfile.py') }}
6262

6363
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
6464
name: Conan profile detect --force

.github/workflows/linux-cross-aarch64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
uses: actions/cache@v3
5151
with:
5252
path: ${{env.CPM_SOURCE_CACHE}}
53-
key: ${{ runner.os }}-aarch64-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
53+
key: ${{ runner.os }}-aarch64-cpm-${{ hashFiles('cmake/CPM.cmake') }}
5454

5555
- name: create Conan cache
5656
id: cache-conan
5757
uses: actions/cache@v3
5858
with:
5959
path: /home/runner/.conan2
60-
key: ${{ runner.os }}-aarch64-conan-${{ hashFiles('**/conanfile.py') }}
60+
key: ${{ runner.os }}-aarch64-conan-${{ hashFiles('conanfile.py') }}
6161

6262
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
6363
name: Conan profile detect --force

.github/workflows/linux-cross-mingw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
uses: actions/cache@v3
5151
with:
5252
path: ${{env.CPM_SOURCE_CACHE}}
53-
key: ${{ runner.os }}-mingw-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
53+
key: ${{ runner.os }}-mingw-cpm-${{ hashFiles('cmake/CPM.cmake') }}
5454

5555
- name: create Conan cache
5656
id: cache-conan
5757
uses: actions/cache@v3
5858
with:
5959
path: /home/runner/.conan2
60-
key: ${{ runner.os }}-mingw-conan-${{ hashFiles('**/conanfile.py') }}
60+
key: ${{ runner.os }}-mingw-conan-${{ hashFiles('conanfile.py') }}
6161

6262
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
6363
name: Conan profile detect --force

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
uses: actions/cache@v3
4646
with:
4747
path: ${{env.CPM_SOURCE_CACHE}}
48-
key: ${{ runner.os }}-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
48+
key: ${{ runner.os }}-cpm-${{ hashFiles('cmake/CPM.cmake') }}
4949

5050
- name: create Conan cache
5151
id: cache-conan
5252
uses: actions/cache@v3
5353
with:
5454
path: /home/runner/.conan2
55-
key: ${{ runner.os }}-conan-${{ hashFiles('**/conanfile.py') }}
55+
key: ${{ runner.os }}-conan-${{ hashFiles('conanfile.py') }}
5656

5757
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
5858
name: Conan profile detect --force

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
uses: actions/cache@v3
4747
with:
4848
path: ${{env.CPM_SOURCE_CACHE}}
49-
key: ${{ runner.os }}-cpm-${{ hashFiles('**/cmake/CPM.cmake') }}
49+
key: ${{ runner.os }}-cpm-${{ hashFiles('cmake/CPM.cmake') }}
5050

5151
- name: create Conan cache
5252
id: cache-conan
5353
uses: actions/cache@v3
5454
with:
5555
path: C:\Users\runneradmin\.conan2
56-
key: ${{ runner.os }}-conan-${{ hashFiles('**/conanfile.py') }}
56+
key: ${{ runner.os }}-conan-${{ hashFiles('conanfile.py') }}
5757

5858
- if: ${{ steps.cache-conan.outputs.cache-hit != 'true' }}
5959
name: Conan profile detect --force

0 commit comments

Comments
 (0)