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') }}