From 82de68dbf328ff4079ae937d11cd79887b3ef025 Mon Sep 17 00:00:00 2001 From: Adam Reeve Date: Wed, 4 Sep 2024 10:48:18 +1200 Subject: [PATCH] Update upload-artifact and download-artifact actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 928dfb5..a16258e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Build NuGet package run: dotnet pack src/SemanticVersioning --configuration=Release --no-build --output nuget - name: Upload NuGet artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.4.0 with: name: nuget-package path: nuget @@ -47,7 +47,7 @@ jobs: run: echo "version=$((Select-Xml -Path ./src/SemanticVersioning/SemanticVersioning.csproj -XPath '/Project/PropertyGroup/Version/text()').node.Value)" >> $env:GITHUB_OUTPUT shell: pwsh - name: Download NuGet artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4.1.8 with: name: nuget-package path: nuget @@ -91,7 +91,7 @@ jobs: } echo "version=$version" >> $env:GITHUB_OUTPUT - name: Download NuGet artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4.1.8 with: name: nuget-package path: nuget