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 526aa3a5fd Fix UI dependencies versions changed in license eye (#9568)
526aa3a5fd is described below

commit 526aa3a5fd077ce548eed8e78052eff394209847
Author: kezhenxu94 <[email protected]>
AuthorDate: Wed Sep 7 12:49:52 2022 +0800

    Fix UI dependencies versions changed in license eye (#9568)
---
 .github/workflows/skywalking.yaml | 7 +++++--
 skywalking-ui                     | 2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/skywalking.yaml 
b/.github/workflows/skywalking.yaml
index 4df65358cf..b86214e3f6 100644
--- a/.github/workflows/skywalking.yaml
+++ b/.github/workflows/skywalking.yaml
@@ -57,7 +57,7 @@ jobs:
   dependency-license:
     if: |
       always() &&
-      ((github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || needs.changes.outputs.pom == 'true')
+      ((github.event_name == 'schedule' && github.repository == 
'apache/skywalking') || needs.changes.outputs.pom == 'true' || 
needs.changes.outputs.ui == 'true')
     name: Dependency licenses
     needs: [changes]
     runs-on: ubuntu-latest
@@ -77,7 +77,7 @@ jobs:
           go-version: "1.16"
       - name: Check Dependencies Licenses
         run: |
-          go install github.com/apache/skywalking-eyes/cmd/license-eye@47febf5
+          go install github.com/apache/skywalking-eyes/cmd/license-eye@7a3e90b
           license-eye dependency resolve --summary 
./dist-material/release-docs/LICENSE.tpl || exit 1
           if [ ! -z "$(git diff -U0 ./dist-material/release-docs/LICENSE)" ]; 
then
             echo "LICENSE file is not updated correctly"
@@ -108,6 +108,7 @@ jobs:
     outputs:
       oap: ${{ steps.filter.outputs.oap }}
       pom: ${{ steps.filter.outputs.pom }}
+      ui: ${{ steps.filter.outputs.ui }}
     steps:
       - uses: actions/checkout@v3 # required for push event
       - name: Check for file changes
@@ -136,6 +137,8 @@ jobs:
               }"
             pom:
               - "**/pom.xml"
+            ui:
+              - "skywalking-ui"
           list-files: json # logs matched files
 
   dist-tar:
diff --git a/skywalking-ui b/skywalking-ui
index 61a4d2f759..49bc349064 160000
--- a/skywalking-ui
+++ b/skywalking-ui
@@ -1 +1 @@
-Subproject commit 61a4d2f759831b9f1d9067ebb2ed5607ccfac02c
+Subproject commit 49bc3490642a82f56f3cd6ca15988d7338fb7d95

Reply via email to