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 94aa095 Bump actions/cache from 2 to 3 (#1570)
94aa095 is described below
commit 94aa095d29465cf3b1885bc522841401476cadce
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Mar 24 22:22:44 2022 +0000
Bump actions/cache from 2 to 3 (#1570)
---
.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 dbfeb4a..6beaa5a 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 106b16f..4a58324 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 a4a6cfc..ac4eac5 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 4efa1e4..798e5ed 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') }}