You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/01/31 12:13:02 UTC

[skywalking-java] branch docker updated (9da5982df8 -> 6a2cd27282)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch docker
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git


 discard 9da5982df8 Fix wrong JDK version when publish Docker snapshot
     new 6a2cd27282 Fix wrong JDK version when publish Docker snapshot

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (9da5982df8)
            \
             N -- N -- N   refs/heads/docker (6a2cd27282)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/publish-docker.yaml | 1 -
 1 file changed, 1 deletion(-)


[skywalking-java] 01/01: Fix wrong JDK version when publish Docker snapshot

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch docker
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git

commit 6a2cd27282b5f08367caa1d46769fc0b705c6c8a
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Jan 31 20:12:53 2023 +0800

    Fix wrong JDK version when publish Docker snapshot
---
 .github/workflows/publish-docker.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/publish-docker.yaml b/.github/workflows/publish-docker.yaml
index ad6cb921a5..96b90d3fd4 100644
--- a/.github/workflows/publish-docker.yaml
+++ b/.github/workflows/publish-docker.yaml
@@ -41,6 +41,10 @@ jobs:
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-publish-docker-${{ hashFiles('**/pom.xml') }}
           restore-keys: ${{ runner.os }}-maven-publish-docker-
+      - uses: actions/setup-java@v2
+        with:
+          distribution: temurin
+          java-version: 17
       - name: Build Agent
         run: make build
       - uses: actions/upload-artifact@v2