changeset 31294:a116b0bcb697 stable

GitHub-CI: Update to newer action versions. * .github/workflows/make.yaml (ubuntu, macos, windows): Update cache actions to newer versions. Actions requiring Node.js 12 are deprecated. See: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 13 Oct 2022 11:26:49 +0200
parents b8afc6e7d9b4
children f21b233f3274 42a558ac8c12
files .github/workflows/make.yaml
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Tue Oct 11 10:24:08 2022 -0400
+++ b/.github/workflows/make.yaml	Thu Oct 13 11:26:49 2022 +0200
@@ -66,11 +66,11 @@
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
-        # uses: actions/cache@v2
+        # uses: actions/cache@v3
         # The original action doesn't upload on error. Use this fork instead.
         # FIXME: Consider reverting to the original action when it allows uploading on error.
         #        See: https://github.com/actions/cache/issues/92
-        uses: pat-s/always-upload-cache@v2
+        uses: pat-s/always-upload-cache@v3
         with:
           path: ~/.ccache
           key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ github.ref }}:${{ steps.ccache_cache_timestamp.outputs.timestamp }}:${{ github.sha }}
@@ -209,7 +209,7 @@
 
       - name: restore ccache
         # setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           path: /Users/runner/Library/Caches/ccache
           key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ github.ref }}:${{ steps.ccache_cache_timestamp.outputs.timestamp }}:${{ github.sha }}
@@ -429,7 +429,7 @@
 
       - name: restore ccache
         # Setup the github cache used to maintain the ccache from one job to the next
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           path: C:/msys64/home/runneradmin/.ccache
           key: ccache:${{ matrix.os }}:${{ matrix.msystem }}:${{ github.ref }}:${{ steps.ccache_cache_timestamp.outputs.timestamp }}:${{ github.sha }}