From 9e93911454959377e7df96e8f8a4a3fdb66f5376 Mon Sep 17 00:00:00 2001 From: Brandon Graham Date: Mon, 11 Nov 2024 13:23:22 -0800 Subject: [PATCH] Update release.yml github workflow (#127) actions/upload-artifact@v2 was deprecated June 2024. This PR updates this component to V4 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb3cd13..a32e62a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: args: --release - name: Upload Build - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: linux-x86_64-unknown-linux-gnu path: ./target/release/thegarii @@ -95,7 +95,7 @@ jobs: - name: Download All Artifacts id: download-artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: path: ./binaries @@ -110,7 +110,7 @@ jobs: # └── linux-x86_64-unknown-linux-gnu # └── # - # The sub-folder name comes from the 'name' field of the 'actions/upload-artifact@v2' + # The sub-folder name comes from the 'name' field of the 'actions/upload-artifact@v4' # step. The '' file name is the filename of the uploaded 'path' field, # we used './target/release/' in the upload step so the file name here # is ''.