From db429fd13e7b83a672c80a5429dae341948f279e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 4 Sep 2024 08:29:38 -0400 Subject: [PATCH] GitHub Actions - Remove specific versions from uses of download-artifact --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 506213e..8bdb736 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: run: docker save libki-server > ${{ github.sha }}.debian.tar - name: Upload image artifact - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact with: name: ${{ github.sha }}.debian.tar path: ${{ github.sha }}.debian.tar @@ -34,7 +34,7 @@ jobs: steps: - name: Download image artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact with: name: ${{ github.sha }}.debian.tar path: /tmp