We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ce72a commit 607a530Copy full SHA for 607a530
1 file changed
.github/workflows/ci-pr-validation.yaml
@@ -58,7 +58,7 @@ jobs:
58
uses: actions/checkout@v3
59
60
- name: Restore vcpkg and its artifacts.
61
- uses: actions/cache@v3
+ uses: actions/cache@v4
62
id: vcpkg-cache
63
with:
64
path: |
@@ -68,8 +68,8 @@ jobs:
68
!${{ env.VCPKG_ROOT }}/buildtrees
69
!${{ env.VCPKG_ROOT }}/packages
70
!${{ env.VCPKG_ROOT }}/downloads
71
- key: |
72
- ${{ runner.os }}-${{ matrix.triplet}}-${{ hashFiles( 'vcpkg.json' ) }}
+ key: ${{ runner.os }}-${{ matrix.triplet }}-${{ hashFiles('vcpkg.json') }}
+ restore-keys: ${{ runner.os }}-${{ matrix.triplet }}-
73
74
- name: Get vcpkg(windows)
75
if: ${{ runner.os == 'Windows' && steps.vcpkg-cache.outputs.cache-hit != 'true' }}
0 commit comments