From 63a0352c2857cdc365ce66a7f9878890ba015cf8 Mon Sep 17 00:00:00 2001 From: hexonthebeach Date: Wed, 19 Jun 2024 10:53:02 +0200 Subject: [PATCH 1/2] Update Github Actions in nuget.yml v3 is throwing deprecation warnings --- .github/workflows/nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 341be77..ba97fc2 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x From 953070a9d61ed93bbc22102b78cd66b74176d207 Mon Sep 17 00:00:00 2001 From: hexonthebeach Date: Wed, 19 Jun 2024 10:53:52 +0200 Subject: [PATCH 2/2] Update Github Actions in main.yml Older versions of the Actions were throwing deprecation warnings. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6313f0c..794bbfd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,9 +11,9 @@ jobs: name: Build and test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v4 with: dotnet-version: | 6.0.x