From b1a7a2caab9cecc5e3cfd52f74b9cc1677f23d8d Mon Sep 17 00:00:00 2001 From: Roberto <107645954+intcooper@users.noreply.github.com> Date: Mon, 20 May 2024 11:14:51 +0200 Subject: [PATCH] Update create-release.yml --- .github/workflows/create-release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 52967ce..2884555 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -58,18 +58,19 @@ jobs: Solution_Name: MMExNotifier.sln # Replace with your solution name, i.e. MyWpfApp.sln. steps: + # Check out the repository (https://github.com/actions/checkout) - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - # Install the .NET Core workload + # Install the .NET Core workload (https://github.com/actions/setup-dotnet) - name: Install .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 6.0.x - # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild + # Add MSBuild to the PATH (https://github.com/microsoft/setup-msbuild) - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v1.0.2