lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master f58fafb5 2/2: Avoid warnings about deprecated


From: Vadim Zeitlin
Subject: [lmi-commits] [lmi] master f58fafb5 2/2: Avoid warnings about deprecated actions in the CI workflow
Date: Tue, 22 Nov 2022 10:50:02 -0500 (EST)

branch: master
commit f58fafb50a22b9310912ae0e8a59da11272497b5
Author: Vadim Zeitlin <vadim@tt-solutions.com>
Commit: Vadim Zeitlin <vadim@tt-solutions.com>

    Avoid warnings about deprecated actions in the CI workflow
    
    Update the versions of the different actions used to avoid getting
    warning about using deprecated (and soon to be removed) functionality
    during each build.
    
    Also use the upstream ccache-action version now that our changes have
    been integrated there.
---
 .github/workflows/ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4481c8c8..eb6be69d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -116,12 +116,12 @@ jobs:
           sudo apt-get -qq install $packages
 
       - name: Checkout
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
         with:
           submodules: 'recursive'
 
       - name: Install CCache
-        uses: vadz/ccache-action@51a14bafac785236dfc551c76c779429eaf85a13
+        uses: hendrikmuhs/ccache-action@v1.2.5
         with:
           key: ${{ matrix.name }}
           max-size: 900M
@@ -217,7 +217,7 @@ jobs:
           fi
 
       - name: Cache downloaded archives
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           # Using the hash of the makefile means that we're going to have
           # false negatives, i.e. re-download the files unnecessarily if the
@@ -232,7 +232,7 @@ jobs:
 
       - name: Cache third-party libraries
         id: cache-local
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           path: |
             /opt/lmi/local/${{ env.LMI_COMPILER }}_${{ env.LMI_TRIPLET }}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]