From a13df327ad849d57806102f199df02b2082ae46f Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Thu, 13 Nov 2025 12:01:53 +0000 Subject: [PATCH 1/3] Update CI workflow to use latest action versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b27ad5..1256a43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v5 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Build run: dotnet build $SOLUTION --configuration $BUILD_CONFIG @@ -42,7 +42,7 @@ jobs: run: dotnet nuget push ./artifacts/**.nupkg --source $NUGET_URL --api-key $NUGET_API_KEY - name: Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v5 with: name: artifacts path: artifacts/**/* From dae7175ff34979e2834fa6656c3af4d167234eb5 Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Thu, 13 Nov 2025 12:03:57 +0000 Subject: [PATCH 2/3] Change .NET version from 8.0.x to 6.0.x --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1256a43..aa7dbde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 6.0.x - name: Build run: dotnet build $SOLUTION --configuration $BUILD_CONFIG From b36bfafc2ecd66d3d21f5e490efaa490ffbe3743 Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Thu, 13 Nov 2025 12:04:39 +0000 Subject: [PATCH 3/3] Upgrade GitHub Actions to latest versions --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40cd20c..58b8bfd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,12 +15,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v5 with: dotnet-version: 6.0.x @@ -45,7 +45,7 @@ jobs: run: dotnet nuget push ./artifacts/**.nupkg --source nuget.org --api-key $NUGET_API_KEY - name: Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v5 with: name: artifacts - path: artifacts/**/* \ No newline at end of file + path: artifacts/**/*