From e0879b84b304603db41aa259aae3529c8fe53876 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 00:03:42 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/documentation.yml | 2 +- .github/workflows/javaTests.yml | 2 +- .github/workflows/python.yml | 8 ++++---- .github/workflows/release-scripts.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 283a8ce5e57..68ef5591c57 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@v4 + uses: actions/cache@v5 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 d7797e5f4a3..5e77a792b23 100644 --- a/.github/workflows/javaTests.yml +++ b/.github/workflows/javaTests.yml @@ -129,7 +129,7 @@ jobs: uses: actions/checkout@v5 - name: Cache Maven Dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 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 112e256ee07..825e2b6d0f5 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -70,13 +70,13 @@ jobs: cache: 'maven' - name: Cache Pip Dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('src/main/python/setup.py') }} - name: Cache Datasets - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | src/main/python/systemds/examples/tutorials/mnist @@ -84,7 +84,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@v4 + uses: actions/cache@v5 with: path: /var/cache/apt/archives key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }} @@ -146,7 +146,7 @@ jobs: - name: Cache Torch Hub if: ${{ matrix.test_mode == 'scuro' }} id: torch-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .torch key: ${{ runner.os }}-torch-${{ hashFiles('requirements.txt') }} diff --git a/.github/workflows/release-scripts.yml b/.github/workflows/release-scripts.yml index 95536f668d9..5f260ba3544 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@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}