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