Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Sep 23, 2024
1 parent 0e1b579 commit eb9145c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
path: /tmp/ccache-cache.tar.zst

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf /tmp/ccache-cache.tar.zst -C "$CCACHE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzzy-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ jobs:
path: /tmp/ccache-cache.tar.zst

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf /tmp/ccache-cache.tar.zst -C "$CCACHE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
path: /tmp/ccache-cache.tar.zst

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf /tmp/ccache-cache.tar.zst -C "$CCACHE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
path: /tmp/ccache-cache.tar.zst

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf /tmp/ccache-cache.tar.zst -C "$CCACHE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ jobs:
path: /tmp/ccache-cache.tar.zst

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf /tmp/ccache-cache.tar.zst -C "$CCACHE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:
path: "${{ github.workspace }}/ccache-cache.tar.zst"

- name: Extract Ccache folder
if: steps.cache-ccache.outputs.cache-hit == 'true'
if: steps.cache-ccache.outputs.cache-matched-key == 'true'
run: |
mkdir -p "$CCACHE_DIR"
tar -xf "${{ github.workspace }}/ccache-cache.tar.zst" -C "$CCACHE_DIR"
Expand Down

0 comments on commit eb9145c

Please sign in to comment.