We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe80d7d commit aa16c1cCopy full SHA for aa16c1c
action.yml
@@ -207,7 +207,9 @@ runs:
207
password: ${{ inputs.password }}
208
209
- name: Build and push Docker images
210
- uses: docker/build-push-action@v6
+ # Do not update to >=v6 untill the issue would be solved
211
+ # https://github.com/docker/build-push-action/issues/1167
212
+ uses: docker/build-push-action@v5
213
id: docker-build-push-action
214
with:
215
allow: ${{ inputs.allow }}
@@ -253,4 +255,4 @@ runs:
253
255
echo "## Docker Image Inspect" >> $GITHUB_STEP_SUMMARY
254
256
echo '```json' >> $GITHUB_STEP_SUMMARY
257
cat inspect.json >> $GITHUB_STEP_SUMMARY
- echo '```' >> $GITHUB_STEP_SUMMARY
258
+ echo '```' >> $GITHUB_STEP_SUMMARY
0 commit comments