Skip to content

Commit

Permalink
upgrade to actions/cache@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
hedzr committed Sep 8, 2024
1 parent 5e6450b commit 80350b0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
# message("::set-output name=timestamp::${current_date}")
echo "timestamp=${{ matrix.os }}-${{ matrix.type }}" >> $GITHUB_STATE
- name: ccache cache files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .ccache
key: ${{ matrix.config.name }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -167,9 +167,11 @@ jobs:
# choco install yaml-cpp
vcpkg install 7zip
elif [ "$RUNNER_OS" == "Darwin" ]; then
brew install p7zip
# brew install p7zip
true
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install p7zip
# brew install p7zip
true
else
echo "RUNNER OS ($RUNNER_OS) not supported"
exit 1
Expand Down

0 comments on commit 80350b0

Please sign in to comment.