Skip to content

Commit 9aa9e75

Browse files
Bump CI action versions and DNNE version to 2.1.0 (#216)
- Update actions/checkout from v4 to v5 - Update actions/setup-dotnet from v4 to v5 - Update actions/upload-artifact from v4 to v7 - Bump DnneVersion from 2.0.8 to 2.1.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6e452da commit 9aa9e75

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
matrix:
1818
flavor: [ 'Debug', 'Release' ]
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v4
22+
uses: actions/setup-dotnet@v5
2323
with:
2424
dotnet-version: '8.0.x'
2525
dotnet-quality: 'ga'
@@ -44,12 +44,12 @@ jobs:
4444
dotnet build test/test.proj -c ${{ matrix.flavor }} -p:BuildPackage=false
4545
- name: Upload Build Logs
4646
if: failure()
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v7
4848
with:
4949
name: unittest.linux.${{ matrix.flavor }}.binlog
5050
path: unittest.${{ matrix.flavor }}.binlog
5151
- name: Upload Package
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: package.${{ matrix.flavor }}
5555
path: src/dnne-pkg/bin/${{ matrix.flavor }}/DNNE.*.nupkg
@@ -60,9 +60,9 @@ jobs:
6060
matrix:
6161
flavor: [ 'Debug', 'Release' ]
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6464
- name: Setup .NET
65-
uses: actions/setup-dotnet@v4
65+
uses: actions/setup-dotnet@v5
6666
with:
6767
dotnet-version: '8.0.x'
6868
dotnet-quality: 'ga'
@@ -87,7 +87,7 @@ jobs:
8787
dotnet build test\test.proj -c ${{ matrix.flavor }} -p:BuildPackage=false
8888
- name: Upload Build Logs
8989
if: failure()
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v7
9191
with:
9292
name: unittest.windows.${{ matrix.flavor }}.binlog
9393
path: unittest.${{ matrix.flavor }}.binlog
@@ -98,9 +98,9 @@ jobs:
9898
matrix:
9999
flavor: [ 'Debug', 'Release' ]
100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102102
- name: Setup .NET
103-
uses: actions/setup-dotnet@v4
103+
uses: actions/setup-dotnet@v5
104104
with:
105105
dotnet-version: '8.0.x'
106106
dotnet-quality: 'ga'
@@ -121,7 +121,7 @@ jobs:
121121
dotnet build test/test.proj -c ${{ matrix.flavor }} -p:BuildPackage=false
122122
- name: Upload Build Logs
123123
if: failure()
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v7
125125
with:
126126
name: unittest.macos.${{ matrix.flavor }}.binlog
127127
path: unittest.${{ matrix.flavor }}.binlog

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<DnneTargetFramework>net8.0</DnneTargetFramework>
4-
<DnneVersion>2.0.8</DnneVersion>
4+
<DnneVersion>2.1.0</DnneVersion>
55

66
<RepoRoot>$(MSBuildThisFileDirectory)/</RepoRoot>
77
<SrcRoot>$(RepoRoot)src/</SrcRoot>

0 commit comments

Comments
 (0)