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 <[email protected]> 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
