This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git
The following commit(s) were added to refs/heads/master by this push:
new b447211 Fix CI workflows: approved docker/login-action SHA + retry
flaky docker build (#229)
b447211 is described below
commit b447211a9319eeb29a445335e9c2536f8c1aa23d
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Wed Jun 3 16:29:25 2026 +0800
Fix CI workflows: approved docker/login-action SHA + retry flaky docker
build (#229)
---
.github/workflows/CI.yaml | 5 ++++-
.github/workflows/publish-docker.yaml | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml
index f768792..a7b6193 100644
--- a/.github/workflows/CI.yaml
+++ b/.github/workflows/CI.yaml
@@ -84,7 +84,10 @@ jobs:
run: make build -j3
- name: Build Docker images
- run: make docker
+ # Retry once: booting buildkit pulls moby/buildkit from Docker Hub,
which
+ # intermittently times out on shared runners. Mirrors
publish-docker.yaml's
+ # `make docker.push || make docker.push`.
+ run: make docker || make docker
command-tests:
diff --git a/.github/workflows/publish-docker.yaml
b/.github/workflows/publish-docker.yaml
index 3030c85..e72414a 100644
--- a/.github/workflows/publish-docker.yaml
+++ b/.github/workflows/publish-docker.yaml
@@ -45,7 +45,7 @@ jobs:
with:
go-version: "1.26"
- name: Log in to the Container registry
- uses: docker/[email protected]
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
with:
registry: ${{ env.HUB }}
username: ${{ github.actor }}