Skip to content

Commit ad74b86

Browse files
chore(deps): bump docker/setup-buildx-action from 3.7.1 to 3.10.0 in the actions group across 1 directory (#94)
* chore(deps): bump docker/setup-buildx-action Bumps the actions group with 1 update in the / directory: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action). Updates `docker/setup-buildx-action` from 3.7.1 to 3.10.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.7.1...v3.10.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * fix(CI.yml): use --password-stdin for docker login --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shenxianpeng <[email protected]>
1 parent f0c701e commit ad74b86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
- uses: actions/checkout@v4
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v3.7.1
32+
uses: docker/setup-buildx-action@v3.10.0
3333

3434
- name: Check formatting
3535
run: make install-deps && make lint
3636

3737
- name: Login container registries
3838
run: |
39-
docker login ghcr.io -u shenxianpeng -p '${{ secrets.CR_PAT }}'
40-
docker login -u '${{ secrets.DOCKER_USERNAME }}' -p '${{ secrets.DOCKER_PASSWORD }}'
39+
echo '${{ secrets.CR_PAT }}' | docker login ghcr.io -u shenxianpeng --password-stdin
40+
echo '${{ secrets.DOCKER_PASSWORD }}' | docker login -u '${{ secrets.DOCKER_USERNAME }}' --password-stdin
4141
4242
- name: Check buildx bake
4343
run: docker buildx bake --file docker-bake.hcl --print

0 commit comments

Comments
 (0)