diff options
author | Cristian Adam <cristian.adam@qt.io> | 2021-11-23 14:47:39 +0100 |
---|---|---|
committer | Cristian Adam <cristian.adam@qt.io> | 2021-11-23 16:09:51 +0000 |
commit | a4791debf0851c31c5e4a4bfcb226e21e02c1309 (patch) | |
tree | 1ae53f63b3eaaddf86f54ead5f9da3e8275bd05b | |
parent | 5841a159c0521d9e3db4e635d30be232d84c0dce (diff) | |
download | qt-creator-a4791debf0851c31c5e4a4bfcb226e21e02c1309.tar.gz |
GitHub Actions: Use actions/cache v1
Update to latest v1 actions/cache, instead of using a fixed version.
For example v1.1.1 increased the cache version from 2GB to 5GB!
Change-Id: Ib312016f5e0e07771451049cf2d4cd3ce0225837
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
-rw-r--r-- | .github/workflows/build_cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 6d2ff5c545..d037726a25 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -372,7 +372,7 @@ jobs: - name: ccache cache files - uses: actions/cache@v1.1.0 + uses: actions/cache@v1 with: path: .ccache key: ${{ matrix.config.name }}-ccache-${{ steps.ccache_cache_timestamp.outputs.ide_major_version }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }} |