Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 75d131b

Browse files
authored
Fix build errors (#2141)
* Update action.yml * Update action.yml
1 parent b2a9a4c commit 75d131b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/composite/build-push/action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ runs:
3131
mkdir -p ~/.docker
3232
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
3333
sudo service docker restart
34-
docker version -f '{{.Client.Experimental}}'
35-
docker version -f '{{.Server.Experimental}}'
3634
3735
- name: Login to Container Registry
38-
uses: docker/login-action@v1
36+
uses: docker/login-action@v2
3937
with:
4038
registry: ${{ inputs.registry_host }}
4139
username: ${{ inputs.registry_username }}
@@ -68,4 +66,4 @@ runs:
6866
shell: bash
6967
run: |
7068
docker --config ~/.docker manifest create ${{ inputs.registry_endpoint }}/${{ inputs.image_name }}:${{ env.BRANCH }} ${{ inputs.registry_endpoint }}/${{ inputs.image_name }}:linux-${{ env.BRANCH }}
71-
docker --config ~/.docker manifest push ${{ inputs.registry_endpoint }}/${{ inputs.image_name }}:${{ env.BRANCH }}
69+
docker --config ~/.docker manifest push ${{ inputs.registry_endpoint }}/${{ inputs.image_name }}:${{ env.BRANCH }}

0 commit comments

Comments
 (0)