Skip to content

Commit 90b3009

Browse files
committed
chore: add .NET 11 to release workflows
1 parent 9e3b151 commit 90b3009

2 files changed

Lines changed: 21 additions & 6 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,19 @@ jobs:
4444
token: ${{ env.AWS_SECRET_TOKEN }}
4545
# Install .NET9 which is needed for AutoVer
4646
- name: Setup .NET 9.0
47-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
47+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
4848
with:
4949
dotnet-version: 9.0.x
5050
# Install .NET10 which is needed for building the solution
5151
- name: Setup .NET 10.0
52-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
52+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
5353
with:
5454
dotnet-version: 10.0.x
55+
# Install .NET11 which is needed for building the solution
56+
- name: Setup .NET 11.0
57+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
58+
with:
59+
dotnet-version: 11.0.x
5560
# Install AutoVer to automate versioning and changelog creation
5661
- name: Install AutoVer
5762
run: dotnet tool install --global AutoVer --version 0.0.25

.github/workflows/sync-master-dev.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,19 @@ jobs:
4646
token: ${{ env.AWS_SECRET_TOKEN }}
4747
# Install .NET9 which is needed for AutoVer
4848
- name: Setup .NET 9.0
49-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
49+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
5050
with:
5151
dotnet-version: 9.0.x
5252
# Install .NET10 which is needed for building the solution
5353
- name: Setup .NET 10.0
54-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
54+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
5555
with:
5656
dotnet-version: 10.0.x
57+
# Install .NET11 which is needed for building the solution
58+
- name: Setup .NET 11.0
59+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
60+
with:
61+
dotnet-version: 11.0.x
5762
# Install AutoVer which is needed to retrieve information about the current release.
5863
- name: Install AutoVer
5964
run: dotnet tool install --global AutoVer --version 0.0.25
@@ -122,14 +127,19 @@ jobs:
122127
fetch-depth: 0
123128
# Install .NET9 which is needed for AutoVer
124129
- name: Setup .NET 9.0
125-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
130+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
126131
with:
127132
dotnet-version: 9.0.x
128133
# Install .NET10 which is needed for building the solution
129134
- name: Setup .NET 10.0
130-
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 #v5.0.1
135+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
131136
with:
132137
dotnet-version: 10.0.x
138+
# Install .NET11 which is needed for building the solution
139+
- name: Setup .NET 11.0
140+
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 #v5.2.0
141+
with:
142+
dotnet-version: 11.0.x
133143
# Install AutoVer which is needed to retrieve information about the current release.
134144
- name: Install AutoVer
135145
run: dotnet tool install --global AutoVer --version 0.0.25

0 commit comments

Comments
 (0)