From 51097f36289b1d9713948d002479ce2223d9e17e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 15 Aug 2026 03:59:40 +0000 Subject: [PATCH] fix: update upload-artifact to v7 and download-artifact to v8 (Node.js 24 compatible) Co-authored-by: wforney <79032+wforney@users.noreply.github.com> --- .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 8ceb073..4c5b9d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: run: dotnet build -c Release SharedCode.sln && dotnet pack -c Release -p:PackageVersion=${{ steps.tag_version.outputs.new_version }} -o . SharedCode.sln - name: Upload Package for Publishing - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: PackedLib path: ./*.nupkg @@ -72,7 +72,7 @@ jobs: packages: write steps: - name: Download built project - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: PackedLib @@ -93,7 +93,7 @@ jobs: id-token: write steps: - name: Download built project - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: PackedLib