diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 652bb51..5ac9b03 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -13,9 +13,9 @@ jobs: uses: actions/checkout@v3 - name: Setup .NET - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore @@ -58,4 +58,4 @@ jobs: tag: ${{ env.CSPROJ_VER }} body: "- Updates for latest OrderCloud API version" artifacts: "**/*.nupkg" - draft: true \ No newline at end of file + draft: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7d5d2e7..80ccdf1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Setup .NET - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Download package uses: robinraju/release-downloader@v1.4