Skip to content

Commit 13cadc6

Browse files
authored
Update wdk (#4104)
* Add required permissions Signed-off-by: Alan Jowett <[email protected]> * Update the WDK Signed-off-by: Alan Jowett <[email protected]> --------- Signed-off-by: Alan Jowett <[email protected]>
1 parent bf40cde commit 13cadc6

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

.github/workflows/check_wdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ on:
1212
# Allow manual triggering of the script
1313
workflow_dispatch:
1414

15+
permissions:
16+
contents: read # Required by actions/checkout to fetch code.
17+
issues: write # Required to create issues.
18+
1519
jobs:
1620
check:
1721
runs-on: Windows-latest

scripts/setup_build/packages.config

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
Copyright (c) eBPF for Windows contributors
4+
SPDX-License-Identifier: MIT
5+
-->
26
<packages>
3-
<package id="Microsoft.Windows.SDK.CPP" version="10.0.26100.2161" targetFramework="native" />
4-
<package id="Microsoft.Windows.SDK.CPP.arm64" version="10.0.26100.2161" targetFramework="native" />
5-
<package id="Microsoft.Windows.SDK.CPP.x64" version="10.0.26100.2161" targetFramework="native" />
6-
<package id="Microsoft.Windows.SDK.CPP.x86" version="10.0.26100.2161" targetFramework="native" />
7-
<package id="Microsoft.Windows.WDK.ARM64" version="10.0.26100.2161" targetFramework="native" />
8-
<package id="Microsoft.Windows.WDK.x64" version="10.0.26100.2161" targetFramework="native" />
9-
<package id="Microsoft.Windows.WDK.x86" version="10.0.26100.2161" targetFramework="native" />
7+
<package id="Microsoft.Windows.SDK.CPP" version="10.0.26100.2454" targetFramework="native" />
8+
<package id="Microsoft.Windows.SDK.CPP.arm64" version="10.0.26100.2454" targetFramework="native" />
9+
<package id="Microsoft.Windows.SDK.CPP.x64" version="10.0.26100.2454" targetFramework="native" />
10+
<package id="Microsoft.Windows.SDK.CPP.x86" version="10.0.26100.2454" targetFramework="native" />
11+
<package id="Microsoft.Windows.WDK.ARM64" version="10.0.26100.2454" targetFramework="native" />
12+
<package id="Microsoft.Windows.WDK.x64" version="10.0.26100.2454" targetFramework="native" />
13+
<package id="Microsoft.Windows.WDK.x86" version="10.0.26100.2454" targetFramework="native" />
1014
</packages>

tools/bpf2c/templates/kernel_mode_bpf2c.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-->
66
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
77
<PropertyGroup>
8-
<WDKVersion>10.0.26100.2161</WDKVersion>
8+
<WDKVersion>10.0.26100.2454</WDKVersion>
99
</PropertyGroup>
1010
<ItemGroup Label="ProjectConfigurations">
1111
<ProjectConfiguration Include="Debug|x64">

tools/bpf2c/templates/user_mode_bpf2c.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-->
66
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
77
<PropertyGroup>
8-
<WDKVersion>10.0.26100.2161</WDKVersion>
8+
<WDKVersion>10.0.26100.2454</WDKVersion>
99
</PropertyGroup>
1010
<ItemGroup Label="ProjectConfigurations">
1111
<ProjectConfiguration Include="Debug|x64">

wdk.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Copyright (c) Microsoft Corporation
3+
Copyright (c) eBPF for Windows contributors
44
SPDX-License-Identifier: MIT
55
-->
66
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="Platform">
77
<PropertyGroup>
88
<HostPlatform>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</HostPlatform>
99
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
10-
<WDKVersion>10.0.26100.2161</WDKVersion>
10+
<WDKVersion>10.0.26100.2454</WDKVersion>
1111
</PropertyGroup>
1212

1313
<Import Project="$(SolutionDir)packages\Microsoft.Windows.SDK.CPP.$(WDKVersion)\build\native\Microsoft.Windows.SDK.cpp.props" Condition="Exists('$(SolutionDir)packages\Microsoft.Windows.SDK.CPP.$(WDKVersion)\build\native\Microsoft.Windows.SDK.cpp.props')" />

0 commit comments

Comments
 (0)