This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new 040115d Fix CI job `check-dependency-license` failure (#7601)
040115d is described below
commit 040115daa12642e5544b5b95429ab99a6ae47145
Author: kezhenxu94 <[email protected]>
AuthorDate: Mon Aug 30 15:36:48 2021 +0800
Fix CI job `check-dependency-license` failure (#7601)
---
.github/workflows/ci-it.yaml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci-it.yaml b/.github/workflows/ci-it.yaml
index 943a1aa..0b360b0 100644
--- a/.github/workflows/ci-it.yaml
+++ b/.github/workflows/ci-it.yaml
@@ -64,7 +64,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.m2/repository
- key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ key: ${{ runner.os }}-maven-ci-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- uses: actions/setup-java@v2
if: env.SKIP_CI != 'true'
@@ -100,6 +100,13 @@ jobs:
with:
name: dist
path: dist
+ - name: Cache local Maven repository
+ if: env.SKIP_CI != 'true'
+ uses: actions/cache@v2
+ with:
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-ci-${{ hashFiles('**/pom.xml') }}
+ restore-keys: ${{ runner.os }}-maven-
- name: Check Dependencies Licenses
if: env.SKIP_CI != 'true'
run: tools/dependencies/check-LICENSE.sh