From 0994648ba20f8ae1b94abb5cbd25dfa9980c7b8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 00:12:33 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 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] --- .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 78b5ce0458e..f2cf4cfa496 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -77,7 +77,7 @@ jobs: architecture: 'x64' - name: Cache Pip Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 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 0d4c71e946b..182bc7c36c0 100644 --- a/.github/workflows/javaTests.yml +++ b/.github/workflows/javaTests.yml @@ -135,7 +135,7 @@ jobs: uses: actions/checkout@v6 - name: Cache Maven Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 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 ee4e771937d..1be68d245bb 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -74,13 +74,13 @@ jobs: cache: 'maven' - name: Cache Pip Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('src/main/python/setup.py') }} - name: Cache Datasets - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | src/main/python/systemds/examples/tutorials/mnist @@ -88,7 +88,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@v5 + uses: actions/cache@v6 with: path: /var/cache/apt/archives key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }} @@ -150,7 +150,7 @@ jobs: - name: Cache Torch Hub if: ${{ matrix.test_mode == 'scuro' }} id: torch-cache - uses: actions/cache@v5 + uses: actions/cache@v6 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 b804a3db507..b9d61975d9e 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@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}