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

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/main by this push:
     new d69723797a Bump actions/cache from 3 to 4
d69723797a is described below

commit d69723797a3b1ee9d5491691f53d216e1a24802b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 18 00:54:19 2024 +0000

    Bump actions/cache from 3 to 4
    
    Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
    - [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/v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
---
 .github/workflows/documentation.yml   | 2 +-
 .github/workflows/javaTests.yml       | 2 +-
 .github/workflows/python.yml          | 6 +++---
 .github/workflows/release-scripts.yml | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/documentation.yml 
b/.github/workflows/documentation.yml
index f971cf3742..3cdc86e505 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -73,7 +73,7 @@ jobs:
         architecture: 'x64'
 
     - name: Cache Pip Dependencies
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: ~/.cache/pip
         key: ${{ runner.os }}-pip-docs-${{ 
hashFiles('src/main/python/docs/requires-docs.txt') }}
diff --git a/.github/workflows/javaTests.yml b/.github/workflows/javaTests.yml
index ff151565e2..04cb80f329 100644
--- a/.github/workflows/javaTests.yml
+++ b/.github/workflows/javaTests.yml
@@ -124,7 +124,7 @@ jobs:
       uses: actions/checkout@v4
 
     - name: Cache Maven Dependencies
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: ~/.m2/repository
         key: ${{ runner.os }}-maven-test-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 6e56dc812e..6633febc4e 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -66,13 +66,13 @@ jobs:
         cache: 'maven'
     
     - name: Cache Pip Dependencies
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: ~/.cache/pip
         key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ 
hashFiles('src/main/python/setup.py') }}
 
     - name: Cache Datasets
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: |
           src/main/python/systemds/examples/tutorials/mnist
@@ -80,7 +80,7 @@ jobs:
         key: ${{ runner.os }}-mnist-${{ 
hashFiles('src/main/python/systemds/examples/tutorials/mnist.py') }}-${{ 
hashFiles('src/main/python/systemds/examples/tutorials/adult.py') }}
 
     - name: Cache Deb Dependencies
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: /var/cache/apt/archives
         key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }}
diff --git a/.github/workflows/release-scripts.yml 
b/.github/workflows/release-scripts.yml
index cf26565909..abac79cec6 100644
--- a/.github/workflows/release-scripts.yml
+++ b/.github/workflows/release-scripts.yml
@@ -54,7 +54,7 @@ jobs:
     - run: printf "JAVA_HOME = $JAVA_HOME \n"
     
     - name: Cache local Maven repository
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: ~/.m2/repository
         key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

Reply via email to