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 93935e5aa STORM-4006 - Adjust GH actions to cache .m2 accordingly
93935e5aa is described below
commit 93935e5aa36775df089ab01e96080e57283336cb
Author: Richard Zowalla <[email protected]>
AuthorDate: Mon Dec 4 15:12:57 2023 +0100
STORM-4006 - Adjust GH actions to cache .m2 accordingly
---
.github/workflows/nightlies.yaml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.github/workflows/nightlies.yaml b/.github/workflows/nightlies.yaml
index 661d181d8..79c9a8c8c 100644
--- a/.github/workflows/nightlies.yaml
+++ b/.github/workflows/nightlies.yaml
@@ -31,6 +31,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
+ with:
+ path: ~/.m2/repository
+ key: nightlies-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
+ nightlies-maven-
- name: Set up Python
uses: actions/setup-python@v4
with: