This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch ci/fix in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit 1f310b5bd8329b7ac210c45b769ce433f0291a01 Author: kezhenxu94 <[email protected]> AuthorDate: Mon Aug 30 10:46:56 2021 +0800 Fix CI job `check-dependency-license` failure --- .github/workflows/ci-it.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-it.yaml b/.github/workflows/ci-it.yaml index 943a1aa..173661e 100644 --- a/.github/workflows/ci-it.yaml +++ b/.github/workflows/ci-it.yaml @@ -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-${{ hashFiles('**/pom.xml') }} + restore-keys: ${{ runner.os }}-maven- - name: Check Dependencies Licenses if: env.SKIP_CI != 'true' run: tools/dependencies/check-LICENSE.sh
