From feae15bf32c54bf1eb43d4724ee099d23449dcd8 Mon Sep 17 00:00:00 2001 From: SFGrenade <25555417+SFGrenade@users.noreply.github.com> Date: Sun, 6 Oct 2024 21:11:32 +0200 Subject: [PATCH] Update workflow deps --- .github/workflows/dotnet.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b423b69..325c4a3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -6,9 +6,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 6.0.x - name: Restore dependencies @@ -18,7 +18,7 @@ jobs: dotnet publish -r linux-x64 -p:PublishSingleFile=true -p:Configuration=Release --no-self-contained cd .. - name: Upload Binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: linux path: bin/Release/net6.0/linux-x64/publish/ @@ -31,7 +31,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: path: ./artifacts @@ -41,7 +41,7 @@ jobs: zip -jr linux.zip ./artifacts/linux/* - name: Create release if a new tag is pushed - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: | ./linux.zip