Skip to content

Commit

Permalink
Fix GitHub workflow cache key conflict (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-guyon authored Jan 11, 2024
1 parent c105111 commit 169ee36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ext
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-somedeps
- name: Print cmake version
run: cmake --version
- uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ext
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-alldeps
- name: Print cmake version
run: cmake --version
- uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
Expand Down

0 comments on commit 169ee36

Please sign in to comment.