Skip to content

Commit 99098e2

Browse files
committed
Update actions and bump Abstractions package version
Upgraded actions/checkout to v6 and setup-dotnet to v5 in all publish workflows. Updated SimpleAuthenticationTools.Abstractions to version 3.1.11 in both SimpleAuthentication.csproj and SimpleAuthentication.Swashbuckle.csproj.
1 parent 711c23f commit 99098e2

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2828

2929
- name: Setup .NET SDK ${{ env.NET_VERSION }}
30-
uses: actions/setup-dotnet@v4
30+
uses: actions/setup-dotnet@v5
3131
with:
3232
dotnet-version: ${{ env.NET_VERSION }}
3333
dotnet-quality: 'ga'

.github/workflows/publish_abstractions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

.github/workflows/publish_swashbuckle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
2929

3030
- name: Setup .NET SDK ${{ env.NET_VERSION }}
31-
uses: actions/setup-dotnet@v4
31+
uses: actions/setup-dotnet@v5
3232
with:
3333
dotnet-version: ${{ env.NET_VERSION }}
3434
dotnet-quality: 'ga'

src/SimpleAuthentication.Swashbuckle/SimpleAuthentication.Swashbuckle.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.1.10" />
35+
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.1.11" />
3636
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.1.7" />
3737
</ItemGroup>
3838

src/SimpleAuthentication/SimpleAuthentication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</ItemGroup>
4040

4141
<ItemGroup>
42-
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.1.10" />
42+
<PackageReference Include="SimpleAuthenticationTools.Abstractions" Version="3.1.11" />
4343
</ItemGroup>
4444

4545
<ItemGroup>

0 commit comments

Comments
 (0)