changeset 31755:cf0b1426539e stable

GitHub-CI (cygwin): Revert to cache action version 3.2.2. * .github/workflows/make.yaml (cygwin): Recent changes to the cache action made it incompatible with Cygwin. See also: https://github.com/actions/cache/issues/1073 Revert to a version of the action that was still working with Cygwin.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 18 Jan 2023 18:00:09 +0100
parents bbc44e60120b
children eb32cf98eed1 084bbdabb969
files .github/workflows/make.yaml
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Mon Jan 16 14:02:10 2023 +0100
+++ b/.github/workflows/make.yaml	Wed Jan 18 18:00:09 2023 +0100
@@ -727,7 +727,7 @@
 
       - name: restore ccache
         # Setup a github cache used to maintain the ccache from one run to the next
-        uses: actions/cache/restore@v3
+        uses: actions/cache/restore@v3.2.2
         with:
           path: ${{ steps.ccache-prepare.outputs.ccachedir }}
           key: ${{ steps.ccache-prepare.outputs.key }}
@@ -793,7 +793,7 @@
 
       - name: save ccache
         # Save the cache after we are done (successfully) building
-        uses: actions/cache/save@v3
+        uses: actions/cache/save@v3.2.2
         with:
           path: ${{ steps.ccache-prepare.outputs.ccachedir }}
           key: ${{ steps.ccache-prepare.outputs.key }}