Skip to content

Commit d6a0d0d

Browse files
authored
Fix caching for Coverity iDir in workflow
Updated Coverity iDir caching in GitHub Actions workflow.
1 parent 61e05e1 commit d6a0d0d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/coverity-ss-action.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
# designate the Coverity idir as something to cache, for more details see:
2323
# https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows
2424
- name: Restore Coverity iDir
25-
uses: actions/cache/restore@v4
25+
#uses: actions/cache/restore@v4
26+
uses: actions/cache@v4
2627
id: cache-coverity-idir
2728
with:
2829
path: .bridge/**/idir
@@ -42,9 +43,9 @@ jobs:
4243
# coverity_local: true
4344
github_token: ${{ secrets.GITHUB_TOKEN }}
4445
include_diagnostics: false
45-
- name: Save Coverity iDir
46-
if: always()
47-
uses: actions/cache/save@v4
48-
with:
49-
path: .bridge/**/idir
50-
key: $coverity-idir-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }}
46+
#- name: Save Coverity iDir
47+
# if: always()
48+
# uses: actions/cache/save@v4
49+
# with:
50+
# path: .bridge/**/idir
51+
# key: $coverity-idir-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }}

0 commit comments

Comments
 (0)