Skip to content

Commit 9e3639a

Browse files
authored
Merge branch 'GitTools:main' into main
2 parents d1bd8db + 5e71ec2 commit 9e3639a

File tree

9 files changed

+17
-13
lines changed

9 files changed

+17
-13
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ updates:
6565
- "dependencies"
6666
commit-message:
6767
prefix: "(build deps)"
68+
groups:
69+
actions:
70+
patterns:
71+
- "actions/*"
6872
directory: "/"
6973
schedule:
7074
interval: daily

.github/workflows/_artifacts_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
name: Restore State
3333
uses: ./.github/actions/artifacts-restore
3434
-
35-
uses: actions/download-artifact@v3
35+
uses: actions/download-artifact@v4
3636
name: Download nuget packages
3737
with:
3838
name: nuget
3939
path: ${{ github.workspace }}/artifacts/packages/nuget
4040
-
41-
uses: actions/download-artifact@v3
41+
uses: actions/download-artifact@v4
4242
name: Download native packages
4343
with:
4444
name: native-${{ runner.os }}

.github/workflows/_artifacts_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Restore State
2525
uses: ./.github/actions/artifacts-restore
2626
-
27-
uses: actions/download-artifact@v3
27+
uses: actions/download-artifact@v4
2828
name: Download nuget packages
2929
with:
3030
name: nuget

.github/workflows/_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ jobs:
2929
run: dotnet run/build.dll --target=Package
3030
-
3131
name: 'Upload nuget packages'
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
if: matrix.os == 'windows-latest'
3434
with:
3535
name: nuget
3636
path: ${{ github.workspace }}/artifacts/packages/nuget
3737
-
3838
name: 'Upload native packages'
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
if: matrix.os == 'windows-latest'
4141
with:
4242
name: native-${{ runner.os }}
4343
path: ${{ github.workspace }}/artifacts/packages/native/*.zip
4444
-
4545
name: 'Upload native packages'
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
if: matrix.os != 'windows-latest'
4848
with:
4949
name: native-${{ runner.os }}

.github/workflows/_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Restore State
3333
uses: ./.github/actions/artifacts-restore
3434
-
35-
uses: actions/download-artifact@v3
35+
uses: actions/download-artifact@v4
3636
name: Download nuget packages
3737
with:
3838
name: nuget

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Restore State
2929
uses: ./.github/actions/artifacts-restore
3030
-
31-
uses: actions/download-artifact@v3
31+
uses: actions/download-artifact@v4
3232
name: Download nuget packages
3333
with:
3434
name: nuget

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ jobs:
111111
name: Restore State
112112
uses: ./.github/actions/artifacts-restore
113113
-
114-
uses: actions/download-artifact@v3
114+
uses: actions/download-artifact@v4
115115
name: Download native linux packages
116116
with:
117117
name: native-Linux
118118
path: ${{ github.workspace }}/artifacts/packages/native
119119
-
120-
uses: actions/download-artifact@v3
120+
uses: actions/download-artifact@v4
121121
name: Download native windows packages
122122
with:
123123
name: native-Windows
124124
path: ${{ github.workspace }}/artifacts/packages/native
125125
-
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
name: Download native macos packages
128128
with:
129129
name: native-macOS

build/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputPath>..\..\run\</OutputPath>
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
88
<Nullable>enable</Nullable>
9-
<LangVersion>11</LangVersion>
9+
<LangVersion>12</LangVersion>
1010
<NoWarn>NU1604</NoWarn>
1111
<ImplicitUsings>enable</ImplicitUsings>
1212
</PropertyGroup>

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<WarningsAsErrors>$(WarningsAsErrors);RS0016;RS0017;RS0022;RS0024;RS0025;RS0026;RS0027</WarningsAsErrors>
2323

2424
<DebugType>embedded</DebugType>
25-
<LangVersion>11</LangVersion>
25+
<LangVersion>12</LangVersion>
2626
<ImplicitUsings>enable</ImplicitUsings>
2727
<Nullable>enable</Nullable>
2828
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>

0 commit comments

Comments
 (0)