This is an automated email from the ASF dual-hosted git repository.
PragmaTwice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 812386c33 ci: fix version of docker/login-action (#3525)
812386c33 is described below
commit 812386c33fd5801377895abb39c65a429c48a20c
Author: Twice <[email protected]>
AuthorDate: Wed Jun 17 09:59:01 2026 +0800
ci: fix version of docker/login-action (#3525)
Refer to https://github.com/apache/kvrocks/actions/runs/27584460435
> The action
docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 is not
allowed in apache/kvrocks because all actions must be from a repository
owned by your enterprise, created by GitHub, or match one of the
patterns
So we need to update the version to one that appears in
https://github.com/apache/infrastructure-actions/blob/main/approved_patterns.yml.
---
.github/workflows/nightly.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml
index 55cea81fe..846a6c473 100644
--- a/.github/workflows/nightly.yaml
+++ b/.github/workflows/nightly.yaml
@@ -54,7 +54,7 @@ jobs:
- name: Login to Docker Hub
if: ${{ github.event_name != 'pull_request' }}
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
+ uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -105,7 +105,7 @@ jobs:
merge-multiple: true
- name: Login to Docker Hub
- uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
+ uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}