bump actions/upload-artifact and actions/download-artifact to 4

This commit is contained in:
CrazyMax
2023-12-19 22:29:15 +01:00
parent 6852c60788
commit a926e04825

View File

@@ -120,9 +120,9 @@ jobs:
*.cache-to=type=gha,scope=artifact-${{ env.PLATFORM_PAIR }},mode=max *.cache-to=type=gha,scope=artifact-${{ env.PLATFORM_PAIR }},mode=max
- -
name: Upload artifact name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: diun name: diun-${{ env.PLATFORM_PAIR }}
path: ${{ env.DESTDIR }} path: ${{ env.DESTDIR }}
if-no-files-found: error if-no-files-found: error
@@ -137,10 +137,11 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- -
name: Download artifacts name: Download artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: diun
path: ${{ env.DESTDIR }} path: ${{ env.DESTDIR }}
pattern: diun-*
merge-multiple: true
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3