diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d877fb..10b0406 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v6.0.2 - name: Setup .NET - uses: actions/setup-dotnet@v5.1.0 + uses: actions/setup-dotnet@v5.2.0 with: dotnet-version: | 8.0.x @@ -36,14 +36,14 @@ jobs: run: dotnet test FeiertageApi.Tests/FeiertageApi.Tests.csproj -c Debug --no-build --no-restore --collect:"XPlat Code Coverage" --results-directory ./TestResults --filter "Category!=Integration" - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: directory: ./TestResults token: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: directory: ./TestResults token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index b01f694..f008766 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v6.0.2 - name: Setup .NET - uses: actions/setup-dotnet@v5.1.0 + uses: actions/setup-dotnet@v5.2.0 with: dotnet-version: | 8.0.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e482e1..88a31ab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: ref: ${{ github.event.release.tag_name }} - name: Setup .NET - uses: actions/setup-dotnet@v5.1.0 + uses: actions/setup-dotnet@v5.2.0 with: dotnet-version: | 8.0.x