From aa18aab7641e76d3a7be44031c9edf3a969e806e Mon Sep 17 00:00:00 2001 From: "Simon G." Date: Tue, 2 Dec 2025 08:40:16 +0100 Subject: [PATCH] - update actions --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/deploy.yml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5475bba..0983bf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,10 +9,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v1 + uses: actions/checkout@v5 + - uses: actions/setup-dotnet@v5 with: - dotnet-version: '9.0.x' + dotnet-version: '10.x' - name: Build run: dotnet build @@ -23,10 +23,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v1 + uses: actions/checkout@v5 + - uses: actions/setup-dotnet@v5 with: - dotnet-version: '9.0.x' + dotnet-version: '10.x' - name: Run tests run: dotnet test diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 70f73a3..18b2e09 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v1 + uses: actions/checkout@v5 + - uses: actions/setup-dotnet@v5 with: - dotnet-version: '9.0.x' + dotnet-version: '10.x' - name: Build run: dotnet build -c Release -o output - name: Deploy to nuGet gallery