Skip to content

Commit d59c861

Browse files
build(ci): Bump the actions group across 1 directory with 2 updates
Bumps the actions group with 2 updates in the / directory: [actions/setup-dotnet](https://github.com/actions/setup-dotnet) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/setup-dotnet` from 5.1.0 to 5.2.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v5.1.0...v5.2.0) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5389072 commit d59c861

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v6.0.2
2020

2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v5.1.0
22+
uses: actions/setup-dotnet@v5.2.0
2323
with:
2424
dotnet-version: |
2525
8.0.x
@@ -36,14 +36,14 @@ jobs:
3636
run: dotnet test FeiertageApi.Tests/FeiertageApi.Tests.csproj -c Debug --no-build --no-restore --collect:"XPlat Code Coverage" --results-directory ./TestResults --filter "Category!=Integration"
3737

3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v5
39+
uses: codecov/codecov-action@v6
4040
with:
4141
directory: ./TestResults
4242
token: ${{ secrets.CODECOV_TOKEN }}
4343

4444
- name: Upload test results to Codecov
4545
if: ${{ !cancelled() }}
46-
uses: codecov/codecov-action@v5
46+
uses: codecov/codecov-action@v6
4747
with:
4848
directory: ./TestResults
4949
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v6.0.2
2121

2222
- name: Setup .NET
23-
uses: actions/setup-dotnet@v5.1.0
23+
uses: actions/setup-dotnet@v5.2.0
2424
with:
2525
dotnet-version: |
2626
8.0.x

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
ref: ${{ github.event.release.tag_name }}
2020

2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v5.1.0
22+
uses: actions/setup-dotnet@v5.2.0
2323
with:
2424
dotnet-version: |
2525
8.0.x

0 commit comments

Comments
 (0)