Skip to content

Commit 2752f82

Browse files
committed
Update dependencies in github actions
1 parent 86b2a87 commit 2752f82

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v4
20+
uses: actions/setup-dotnet@v5
2121
with:
2222
dotnet-version: 10.0.x
2323

.github/workflows/nuget-cli.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
id-token: write # enable GitHub OIDC (OpenID Connect standard) token issuance for this job
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
24-
dotnet-version: 9.0.x
24+
dotnet-version: 10.0.x
2525
- name: Restore dependencies
2626
run: dotnet restore
2727
- name: Build
2828
run: dotnet build -c Release --no-restore
2929
- name: Test
30-
run: dotnet test -c Release --no-build --framework net8.0
30+
run: dotnet test -c Release --no-build --framework net10.0
3131
- name: Pack nugets
3232
run: dotnet pack "./UUIDNext.Cli/UUIDNext.Cli.csproj" -c Release --no-build --output .
3333

.github/workflows/nuget-lib.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
id-token: write # enable GitHub OIDC (OpenID Connect standard) token issuance for this job
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
24-
dotnet-version: 9.0.x
24+
dotnet-version: 10.0.x
2525
- name: Restore dependencies
2626
run: dotnet restore
2727
- name: Build
2828
run: dotnet build -c Release --no-restore
2929
- name: Test
30-
run: dotnet test -c Release --no-build --framework net8.0
30+
run: dotnet test -c Release --no-build --framework net10.0
3131
- name: Pack nugets
3232
run: dotnet pack "./UUIDNext/UUIDNext.csproj" -c Release --no-build --output .
3333

0 commit comments

Comments
 (0)