From 7edbe3908c3247e422fb418dc5e71a648b252a1f Mon Sep 17 00:00:00 2001 From: Kyriet Date: Sun, 12 Jan 2025 19:14:46 +0100 Subject: [PATCH] Update upload-artifact action to the latest version v2 has been deprecated since June 30, 2024 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f3fb40e..0293e59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: move build\Release\trex.lib . 7z a -tzip trex.zip trex.lib - name: upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: trex-windows-msvc-x64 path: trex.zip @@ -39,7 +39,7 @@ jobs: mv build/libtrex.a . tar -czf trex.tar.gz libtrex.a - name: upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: trex-linux-gcc-x64 path: trex.tar.gz