This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 13940cdc7e GH-45499: [CI] Bump actions/cache version on GHA (#45500)
13940cdc7e is described below

commit 13940cdc7e463eff8001e05b86be62a7c0e4c189
Author: Antoine Pitrou <[email protected]>
AuthorDate: Tue Feb 11 18:29:44 2025 +0100

    GH-45499: [CI] Bump actions/cache version on GHA (#45500)
    
    ### Rationale for this change
    
    Older versions of the `actions/cache` GitHub action are being deprecated as 
explained in https://github.com/actions/cache/discussions/1510.
    Because of this, some CI jobs have started to fail: 
https://github.com/apache/arrow/actions/runs/13265539807/job/37034895918
    
    ### Are these changes tested?
    
    Yes, by construction.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #45499
    
    Authored-by: Antoine Pitrou <[email protected]>
    Signed-off-by: Antoine Pitrou <[email protected]>
---
 .github/workflows/cpp.yml         | 2 +-
 .github/workflows/docs.yml        | 2 +-
 .github/workflows/docs_light.yml  | 2 +-
 .github/workflows/integration.yml | 2 +-
 .github/workflows/python.yml      | 2 +-
 .github/workflows/r.yml           | 2 +-
 .github/workflows/r_nightly.yml   | 2 +-
 .github/workflows/ruby.yml        | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml
index b0adbbfa0a..e56bcc09d4 100644
--- a/.github/workflows/cpp.yml
+++ b/.github/workflows/cpp.yml
@@ -113,7 +113,7 @@ jobs:
           fetch-depth: 0
           submodules: recursive
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: ${{ matrix.image }}-${{ hashFiles('cpp/**') }}
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index f9d8b72cbe..55ca6e6f2c 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -46,7 +46,7 @@ jobs:
         run: |
           ci/scripts/util_free_space.sh
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: debian-docs-${{ hashFiles('cpp/**') }}
diff --git a/.github/workflows/docs_light.yml b/.github/workflows/docs_light.yml
index 252c08a460..f406c7396c 100644
--- a/.github/workflows/docs_light.yml
+++ b/.github/workflows/docs_light.yml
@@ -53,7 +53,7 @@ jobs:
         with:
           fetch-depth: 0
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: conda-docs-${{ hashFiles('cpp/**') }}
diff --git a/.github/workflows/integration.yml 
b/.github/workflows/integration.yml
index 2e8e5d9a0c..a6a6d22d09 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -100,7 +100,7 @@ jobs:
         run: |
           ci/scripts/util_free_space.sh
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: conda-${{ hashFiles('cpp/**') }}
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index bc8f670f13..19e7754fd8 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -108,7 +108,7 @@ jobs:
           fetch-depth: 0
           submodules: recursive
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: ${{ matrix.cache }}-${{ hashFiles('cpp/**') }}
diff --git a/.github/workflows/r.yml b/.github/workflows/r.yml
index 407cc775c3..a7d59c32d8 100644
--- a/.github/workflows/r.yml
+++ b/.github/workflows/r.yml
@@ -145,7 +145,7 @@ jobs:
         run: |
           ci/scripts/util_free_space.sh
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           # As this key is identical on both matrix builds only one will be 
able to successfully cache,
diff --git a/.github/workflows/r_nightly.yml b/.github/workflows/r_nightly.yml
index 2da69bd705..51cdd09c5e 100644
--- a/.github/workflows/r_nightly.yml
+++ b/.github/workflows/r_nightly.yml
@@ -86,7 +86,7 @@ jobs:
             exit 1
           fi
       - name: Cache Repo
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: repo
           key: r-nightly-${{ github.run_id }}
diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml
index fe8e8e0486..7a29d35ee7 100644
--- a/.github/workflows/ruby.yml
+++ b/.github/workflows/ruby.yml
@@ -84,7 +84,7 @@ jobs:
           fetch-depth: 0
           submodules: recursive
       - name: Cache Docker Volumes
-        uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
+        uses: actions/cache@v4
         with:
           path: .docker
           key: ubuntu-${{ matrix.ubuntu }}-ruby-${{ hashFiles('cpp/**') }}

Reply via email to