Skip to content

Commit 9b23c2b

Browse files
committed
Merge branch 'master' into user/AntonDevil/UpdateDependencies
2 parents bc9cebe + aed958a commit 9b23c2b

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
@@ -198,7 +198,6 @@
198198
<ClCompile Include="SettingsDlg.cpp" />
199199
<ClCompile Include="ShortcutCommand.cpp" />
200200
<ClCompile Include="SliderCtrl.cpp" />
201-
<ClCompile Include="TreeHandler.h" />
202201
<ClCompile Include="TreeViewCtrl.cpp" />
203202
</ItemGroup>
204203
<ItemGroup>
@@ -226,6 +225,7 @@
226225
<ClInclude Include="ShortcutCommand.h" />
227226
<ClInclude Include="SliderCtrl.h" />
228227
<ClInclude Include="StopWatch.h" />
228+
<ClInclude Include="TreeHandler.h" />
229229
<ClInclude Include="TrackingStream.h" />
230230
<ClInclude Include="TreeViewCtrl.h" />
231231
</ItemGroup>

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="..\..\external\npp\StaticDialog.cpp">
5858
<Filter>ThirdParty\npp</Filter>
5959
</ClCompile>
60-
<ClCompile Include="TreeHandler.h">
61-
<Filter>Header Files</Filter>
62-
</ClCompile>
6360
<ClCompile Include="SliderCtrl.cpp">
6461
<Filter>Source Files</Filter>
6562
</ClCompile>
@@ -83,6 +80,9 @@
8380
<ClInclude Include="ScintillaEditor.h">
8481
<Filter>Header Files</Filter>
8582
</ClInclude>
83+
<ClInclude Include="TreeHandler.h">
84+
<Filter>Header Files</Filter>
85+
</ClInclude>
8686
<ClInclude Include="TreeViewCtrl.h">
8787
<Filter>Header Files</Filter>
8888
</ClInclude>

0 commit comments

Comments
 (0)