From b3b9726596ce091a0a6850ee1b51bde16c667373 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 20:25:33 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/applicationTests.yml | 2 +- .github/workflows/documentation.yml | 2 +- .github/workflows/functionsTests.yml | 2 +- .github/workflows/python.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/applicationTests.yml b/.github/workflows/applicationTests.yml index dbfeb4af28b..6beaa5aaba0 100644 --- a/.github/workflows/applicationTests.yml +++ b/.github/workflows/applicationTests.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v3 - name: Cache Maven Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-test-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 106b16fa0e6..4a583240d00 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@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-docs-${{ hashFiles('src/main/python/docs/requires-docs.txt') }} diff --git a/.github/workflows/functionsTests.yml b/.github/workflows/functionsTests.yml index a4a6cfc02e3..ac4eac5cd7e 100644 --- a/.github/workflows/functionsTests.yml +++ b/.github/workflows/functionsTests.yml @@ -74,7 +74,7 @@ jobs: uses: actions/checkout@v3 - name: Cache Maven Dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 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 4efa1e400a7..798e5ed8f05 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@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('src/main/python/setup.py') }} - name: Cache Datasets - uses: actions/cache@v2 + uses: actions/cache@v3 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@v2 + uses: actions/cache@v3 with: path: /var/cache/apt/archives key: ${{ runner.os }}-${{ hashFiles('.github/workflows/python.yml') }}