Downgrade artifact actions to v3 for Gitea compatibility
Some checks failed
CI Pipeline / push (push) Has been skipped
CI Pipeline / update-cd (push) Has been skipped
CI Pipeline / lint (push) Successful in 19s
CI Pipeline / build (push) Successful in 1m12s
CI Pipeline / test (push) Failing after 1m9s
CI Pipeline / security-scan (push) Successful in 2m14s

This commit is contained in:
Patrick de Ruiter 2025-12-25 18:02:49 +01:00
parent 8c9758ddd6
commit 578fa5350a
Signed by: pderuiter
GPG Key ID: 5EBA7F21CF583321

View File

@ -60,7 +60,7 @@ jobs:
docker save ${{ env.IMAGE_NAME }}:test -o /tmp/images/image.tar docker save ${{ env.IMAGE_NAME }}:test -o /tmp/images/image.tar
- name: Upload image artifact - name: Upload image artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: docker-image name: docker-image
path: /tmp/images/image.tar path: /tmp/images/image.tar
@ -75,7 +75,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Download image artifact - name: Download image artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: docker-image name: docker-image
path: /tmp/images path: /tmp/images
@ -98,7 +98,7 @@ jobs:
needs: build needs: build
steps: steps:
- name: Download image artifact - name: Download image artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: docker-image name: docker-image
path: /tmp/images path: /tmp/images
@ -141,7 +141,7 @@ jobs:
full_image: ${{ steps.version.outputs.FULL_IMAGE }} full_image: ${{ steps.version.outputs.FULL_IMAGE }}
steps: steps:
- name: Download image artifact - name: Download image artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: docker-image name: docker-image
path: /tmp/images path: /tmp/images