From 3ee39e62cc3a298f52cbe350fdd572521b91721e Mon Sep 17 00:00:00 2001 From: eyunzhu <1036795373@qq.com> Date: Fri, 8 Nov 2024 09:19:30 +0800 Subject: [PATCH] =?UTF-8?q?test=20=E5=B7=A5=E4=BD=9C=E6=B5=81=20=E4=BD=BF?= =?UTF-8?q?=E7=94=A8actions/download-artifact@v4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-build-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-build-test.yml b/.github/workflows/docker-build-test.yml index 04bccb0..90d1120 100644 --- a/.github/workflows/docker-build-test.yml +++ b/.github/workflows/docker-build-test.yml @@ -48,7 +48,7 @@ jobs: # Upload the Minimal image as an artifact - name: Upload minimal image artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: minimal_test_image path: minimal_test.tar @@ -73,7 +73,7 @@ jobs: # Upload the LNMP image as an artifact - name: Upload lnmp image artifact if: ${{ github.event.inputs.push_type == 'both' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: lnmp_test_image path: lnmp_test.tar @@ -85,7 +85,7 @@ jobs: steps: # Download the Minimal image artifact - name: Download minimal image artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: minimal_test_image @@ -109,7 +109,7 @@ jobs: steps: # Download the LNMP image artifact - name: Download lnmp image artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: lnmp_test_image