This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new 4996a655b Bump actions/cache from 3 to 4
4996a655b is described below
commit 4996a655bb1021d14b8872cec48777e521df1aaf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Jul 2 10:41:20 2024 +0000
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [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/v3...v4)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
---
.github/workflows/maven.yaml | 2 +-
.github/workflows/nightlies.yaml | 2 +-
.github/workflows/snapshots.yaml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index d7960955f..348991e2e 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -34,7 +34,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/nightlies.yaml b/.github/workflows/nightlies.yaml
index 58ffc14c7..347c41b97 100644
--- a/.github/workflows/nightlies.yaml
+++ b/.github/workflows/nightlies.yaml
@@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ~/.m2/repository
key: nightlies-maven-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/snapshots.yaml b/.github/workflows/snapshots.yaml
index 05301ae02..8cd268789 100644
--- a/.github/workflows/snapshots.yaml
+++ b/.github/workflows/snapshots.yaml
@@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ~/.m2/repository
key: snapshots-maven-${{ hashFiles('**/pom.xml') }}