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

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


The following commit(s) were added to refs/heads/main by this push:
     new 5b63fb4161 Bump actions/cache from 5 to 6 (#3833)
5b63fb4161 is described below

commit 5b63fb4161d8753c78e0cfd3a21010c000900bdf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 3 19:43:16 2026 +0200

    Bump actions/cache from 5 to 6 (#3833)
    
    Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](https://github.com/actions/cache/compare/v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/deploy-docs.yml           | 2 +-
 .github/workflows/java-publish-snapshot.yml | 2 +-
 .github/workflows/maven4.yml                | 4 ++--
 .github/workflows/rat.yml                   | 2 +-
 .github/workflows/spotless.yml              | 2 +-
 .github/workflows/test-lang-c.yml           | 4 ++--
 .github/workflows/test-lang-csharp.yml      | 4 ++--
 .github/workflows/test-lang-java.yml        | 4 ++--
 .github/workflows/test-lang-js.yml          | 4 ++--
 .github/workflows/test-lang-perl.yml        | 2 +-
 .github/workflows/test-lang-php.yml         | 4 ++--
 .github/workflows/test-lang-py.yml          | 2 +-
 .github/workflows/test-lang-ruby.yml        | 6 +++---
 13 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/.github/workflows/deploy-docs.yml 
b/.github/workflows/deploy-docs.yml
index 2b644676af..4238b11175 100644
--- a/.github/workflows/deploy-docs.yml
+++ b/.github/workflows/deploy-docs.yml
@@ -138,7 +138,7 @@ jobs:
         uses: actions/checkout@v7
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/java-publish-snapshot.yml 
b/.github/workflows/java-publish-snapshot.yml
index 8606bfa6ad..0aa895f64d 100644
--- a/.github/workflows/java-publish-snapshot.yml
+++ b/.github/workflows/java-publish-snapshot.yml
@@ -36,7 +36,7 @@ jobs:
       - uses: actions/checkout@v7
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/maven4.yml b/.github/workflows/maven4.yml
index b18204d587..c7a65467f8 100644
--- a/.github/workflows/maven4.yml
+++ b/.github/workflows/maven4.yml
@@ -35,7 +35,7 @@ jobs:
       - uses: actions/checkout@v7
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -43,7 +43,7 @@ jobs:
             ${{ runner.os }}-maven-
 
       - name: Cache Maven 4 Build Cache
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/build-cache
           key: ${{ runner.os }}-maven-build-cache-${{ hashFiles('**/pom.xml') 
}}
diff --git a/.github/workflows/rat.yml b/.github/workflows/rat.yml
index 0c7c014319..37f2f0cb33 100644
--- a/.github/workflows/rat.yml
+++ b/.github/workflows/rat.yml
@@ -32,7 +32,7 @@ jobs:
       - uses: actions/checkout@v7
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/spotless.yml b/.github/workflows/spotless.yml
index bcdb7253e7..79220e73e0 100644
--- a/.github/workflows/spotless.yml
+++ b/.github/workflows/spotless.yml
@@ -35,7 +35,7 @@ jobs:
       - uses: actions/checkout@v7
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-c.yml 
b/.github/workflows/test-lang-c.yml
index 62747418b8..e803e414f1 100644
--- a/.github/workflows/test-lang-c.yml
+++ b/.github/workflows/test-lang-c.yml
@@ -61,7 +61,7 @@ jobs:
           pkg-config --libs avro-c
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -121,7 +121,7 @@ jobs:
                                                             libzstd-dev
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-csharp.yml 
b/.github/workflows/test-lang-csharp.yml
index 03583fdb7c..1548cced19 100644
--- a/.github/workflows/test-lang-csharp.yml
+++ b/.github/workflows/test-lang-csharp.yml
@@ -55,7 +55,7 @@ jobs:
             7.0.x
             8.0.x
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: ~/.nuget/packages
           key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -91,7 +91,7 @@ jobs:
             8.0.x
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-java.yml 
b/.github/workflows/test-lang-java.yml
index dae670d818..e16c75e9bb 100644
--- a/.github/workflows/test-lang-java.yml
+++ b/.github/workflows/test-lang-java.yml
@@ -47,7 +47,7 @@ jobs:
         uses: actions/checkout@v7
 
       - name: "Cache Local Maven Repository"
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -99,7 +99,7 @@ jobs:
       - uses: actions/checkout@v7
 
       - name: "Cache Local Maven Repository"
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-js.yml 
b/.github/workflows/test-lang-js.yml
index f06c42421e..9151583b61 100644
--- a/.github/workflows/test-lang-js.yml
+++ b/.github/workflows/test-lang-js.yml
@@ -51,7 +51,7 @@ jobs:
         with:
           node-version: ${{ matrix.node }}
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: ~/.npm
           key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -82,7 +82,7 @@ jobs:
         with:
           node-version: ${{ matrix.node }}
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: ~/.npm
           key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
diff --git a/.github/workflows/test-lang-perl.yml 
b/.github/workflows/test-lang-perl.yml
index 4d508367a3..da5589014c 100644
--- a/.github/workflows/test-lang-perl.yml
+++ b/.github/workflows/test-lang-perl.yml
@@ -106,7 +106,7 @@ jobs:
                                                        Try::Tiny
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-php.yml 
b/.github/workflows/test-lang-php.yml
index 1e70d5bcf8..85e7aefb12 100644
--- a/.github/workflows/test-lang-php.yml
+++ b/.github/workflows/test-lang-php.yml
@@ -61,7 +61,7 @@ jobs:
         id: composer-cache
         run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: ${{ steps.composer-cache.outputs.dir }}
           key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -102,7 +102,7 @@ jobs:
           tools: composer:2.9.8
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-py.yml 
b/.github/workflows/test-lang-py.yml
index ee7ea69e76..1216dc41d2 100644
--- a/.github/workflows/test-lang-py.yml
+++ b/.github/workflows/test-lang-py.yml
@@ -120,7 +120,7 @@ jobs:
         run: uv sync --frozen
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/test-lang-ruby.yml 
b/.github/workflows/test-lang-ruby.yml
index 4fcd43f3f0..b994e166a8 100644
--- a/.github/workflows/test-lang-ruby.yml
+++ b/.github/workflows/test-lang-ruby.yml
@@ -56,7 +56,7 @@ jobs:
       - name: Install Dependencies
         run: sudo apt-get update && sudo apt-get install -qqy libsnappy-dev
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: .gem
           key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -99,7 +99,7 @@ jobs:
       - name: Install Dependencies
         run: sudo apt-get update && sudo apt-get install -qqy libsnappy-dev
 
-      - uses: actions/cache@v5
+      - uses: actions/cache@v6
         with:
           path: .gem
           key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@@ -110,7 +110,7 @@ jobs:
         run: bundle config path .gem
 
       - name: Cache Local Maven Repository
-        uses: actions/cache@v5
+        uses: actions/cache@v6
         with:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

Reply via email to