Skip to content

Commit 9c26f81

Browse files
dependabot[bot]KaliCZ
authored andcommitted
Bump the actions group with 5 updates (#7)
Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [dorny/test-reporter](https://github.com/dorny/test-reporter) | `1` | `3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `dorny/test-reporter` from 1 to 3 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](dorny/test-reporter@3eeb9fc...a43b3a5) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: dorny/test-reporter dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4920325 commit 9c26f81

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v6
3131

3232
- name: Setup .NET 10
33-
uses: actions/setup-dotnet@v4
33+
uses: actions/setup-dotnet@v5
3434
with:
3535
dotnet-version: 10.0.x
3636

@@ -52,14 +52,14 @@ jobs:
5252

5353
- name: Upload NuGet package
5454
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v7
5656
with:
5757
name: nuget-package
5858
path: src/out/*.nupkg
5959
retention-days: 1
6060

6161
- name: Test Report
62-
uses: dorny/test-reporter@3eeb9fc888e82e8be2fb356bbeec2750231672bc # v1
62+
uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 # v3.0.0
6363
if: success() || failure()
6464
with:
6565
name: StrongTypes Tests report
@@ -75,12 +75,12 @@ jobs:
7575

7676
steps:
7777
- name: Download NuGet package
78-
uses: actions/download-artifact@v4
78+
uses: actions/download-artifact@v8
7979
with:
8080
name: nuget-package
8181

8282
- name: Setup .NET 10
83-
uses: actions/setup-dotnet@v4
83+
uses: actions/setup-dotnet@v5
8484
with:
8585
dotnet-version: 10.0.x
8686

0 commit comments

Comments
 (0)