Author: ivan
Date: Sun May 10 12:31:25 2026
New Revision: 1934048

Log:
Update to the v5 version of GitHub Action cache.

The changes is the following:
[[[
# v5

* Updated to node 24
* Requires a minimum Actions Runner version of 2.327.1
]]]

* .github/workflows/cmake.yml: Use actions/cache/restore@v5 and
  actions/cache/save@v5.

Modified:
   subversion/trunk/.github/workflows/cmake.yml

Modified: subversion/trunk/.github/workflows/cmake.yml
==============================================================================
--- subversion/trunk/.github/workflows/cmake.yml        Sun May 10 12:09:41 
2026        (r1934047)
+++ subversion/trunk/.github/workflows/cmake.yml        Sun May 10 12:31:25 
2026        (r1934048)
@@ -115,7 +115,7 @@ jobs:
 
       - name: Restore vcpkg archives (Windows, vcpkg)
         if: runner.os == 'Windows'
-        uses: actions/cache/restore@v4
+        uses: actions/cache/restore@v5
         with:
           path: vcpkg-archives
           key: vcpkg/${{ runner.os }}/${{ matrix.vcpkg_triplet }}/${{ 
steps.vcpkg-sha.outputs.sha }}
@@ -136,7 +136,7 @@ jobs:
 
       - name: Save vcpkg archives (Windows, vcpkg)
         if: runner.os == 'Windows'
-        uses: actions/cache/save@v4
+        uses: actions/cache/save@v5
         with:
           path: vcpkg-archives
           key: vcpkg/${{ runner.os }}/${{ matrix.vcpkg_triplet }}/${{ 
steps.vcpkg-sha.outputs.sha }}

Reply via email to