Revert "Bump build-image action versions" (#5955)

This commit is contained in:
Jesse Hills 2023-12-18 15:27:26 +09:00 committed by GitHub
parent 0f4d7dadb3
commit 89c6f3d45d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ runs:
- name: Build and push to ghcr by digest
id: build-ghcr
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v5.0.0
with:
context: .
file: ./docker/Dockerfile
@ -58,7 +58,7 @@ runs:
touch "/tmp/digests/${{ inputs.target }}/ghcr/${digest#sha256:}"
- name: Upload ghcr digest
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v3.1.3
with:
name: digests-${{ inputs.target }}-ghcr
path: /tmp/digests/${{ inputs.target }}/ghcr/*
@ -67,7 +67,7 @@ runs:
- name: Build and push to dockerhub by digest
id: build-dockerhub
uses: docker/build-push-action@v5.1.0
uses: docker/build-push-action@v5.0.0
with:
context: .
file: ./docker/Dockerfile
@ -89,7 +89,7 @@ runs:
touch "/tmp/digests/${{ inputs.target }}/dockerhub/${digest#sha256:}"
- name: Upload dockerhub digest
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v3.1.3
with:
name: digests-${{ inputs.target }}-dockerhub
path: /tmp/digests/${{ inputs.target }}/dockerhub/*