Skip to content

Commit 732e418

Browse files
committed
Merge branch 'master' into user/AntonDevil/MoveDependenciesToGitModules
2 parents 1d5b97b + aed958a commit 732e418

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
# Step 1: Check out the code from the repo
2525
- name: Checkout repo
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
submodules: recursive
2929

@@ -67,7 +67,7 @@ jobs:
6767
steps:
6868
# Step 7: Download all artifacts from the build job
6969
- name: Download all artifacts
70-
uses: actions/download-artifact@v4
70+
uses: actions/download-artifact@v5
7171
with:
7272
pattern: ${{env.ARTIFACT_PREFIX}}*
7373
path: all_artifacts\

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
submodules: recursive
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@v3
52+
uses: github/codeql-action/init@v4
5353
with:
5454
languages: ${{ matrix.language }}
5555

5656
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v3
59+
uses: github/codeql-action/autobuild@v4
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@v3
62+
uses: github/codeql-action/analyze@v4
6363

src/NppJsonViewer/NPPJSONViewer.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@
197197
<ClCompile Include="SettingsDlg.cpp" />
198198
<ClCompile Include="ShortcutCommand.cpp" />
199199
<ClCompile Include="SliderCtrl.cpp" />
200-
<ClCompile Include="TreeHandler.h" />
201200
<ClCompile Include="TreeViewCtrl.cpp" />
202201
<ClCompile Include="plugintemplate\DockingFeature\StaticDialog.cpp" />
203202
</ItemGroup>
@@ -217,6 +216,7 @@
217216
<ClInclude Include="SliderCtrl.h" />
218217
<ClInclude Include="StopWatch.h" />
219218
<ClInclude Include="TrackingStream.h" />
219+
<ClInclude Include="TreeHandler.h" />
220220
<ClInclude Include="TreeViewCtrl.h" />
221221
<ClInclude Include="plugintemplate\DockingFeature\Docking.h" />
222222
<ClInclude Include="plugintemplate\DockingFeature\DockingDlgInterface.h" />

src/NppJsonViewer/NPPJSONViewer.vcxproj.filters

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
<ClCompile Include="SliderCtrl.cpp">
5858
<Filter>Source Files</Filter>
5959
</ClCompile>
60-
<ClCompile Include="TreeHandler.h">
61-
<Filter>Header Files</Filter>
62-
</ClCompile>
6360
<ClCompile Include="TreeViewCtrl.cpp">
6461
<Filter>Source Files</Filter>
6562
</ClCompile>
@@ -113,6 +110,9 @@
113110
<ClInclude Include="TrackingStream.h">
114111
<Filter>Header Files</Filter>
115112
</ClInclude>
113+
<ClInclude Include="TreeHandler.h">
114+
<Filter>Header Files</Filter>
115+
</ClInclude>
116116
<ClInclude Include="TreeViewCtrl.h">
117117
<Filter>Header Files</Filter>
118118
</ClInclude>

0 commit comments

Comments
 (0)