File tree 8 files changed +49
-27
lines changed
8 files changed +49
-27
lines changed Original file line number Diff line number Diff line change 38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@v4
42
42
with :
43
43
fetch-depth : 0
44
44
submodules : recursive
@@ -58,16 +58,16 @@ jobs:
58
58
move libusbK* libusbk
59
59
60
60
- name : Initialize CodeQL
61
- uses : github/codeql-action/init@v2
61
+ uses : github/codeql-action/init@v3
62
62
with :
63
63
languages : cpp
64
64
65
65
- name : Add MSBuild to PATH
66
- uses : microsoft/setup-msbuild@v1
66
+ uses : microsoft/setup-msbuild@v2
67
67
68
68
- name : Build
69
69
shell : cmd
70
70
run : msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ env.BUILD_CONFIGURATION}},Platform=${{ env.TARGET_PLATFORM }},BuildMacros=${{ env.BUILD_MACROS }}
71
71
72
72
- name : Perform CodeQL Analysis
73
- uses : github/codeql-action/analyze@v2
73
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change 25
25
26
26
steps :
27
27
- name : Checkout repository
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
29
29
with :
30
30
fetch-depth : 0
31
31
submodules : recursive
52
52
move libusb-win32* libusb0
53
53
move libusbK* libusbk
54
54
- name : Add MSBuild to PATH
55
- uses : microsoft/setup-msbuild@v1
55
+ uses : microsoft/setup-msbuild@v2
56
56
- name : Build with Coverity
57
57
shell : cmd
58
58
run : |
Original file line number Diff line number Diff line change 53
53
autotools
54
54
git
55
55
- name : Checkout repository
56
- uses : actions/checkout@v3
56
+ uses : actions/checkout@v4
57
57
with :
58
58
fetch-depth : 0
59
59
submodules : recursive
82
82
if : ${{ github.event_name == 'push' }}
83
83
run : sha256sum artifacts/${{ matrix.env }}/*.exe
84
84
- name : Upload artifacts
85
- uses : actions/upload-artifact@v2
85
+ uses : actions/upload-artifact@v4
86
86
if : ${{ github.event_name == 'push' }}
87
87
with :
88
- name : MinGW
88
+ name : ${{ matrix.sys }}
89
89
path : ./artifacts/*/*.exe
90
+
91
+ Merge-Artifacts :
92
+ runs-on : windows-latest
93
+ needs : MinGW-Build
94
+ steps :
95
+ - name : Merge Artifacts
96
+ uses : actions/upload-artifact/merge@v4
97
+ if : ${{ github.event_name == 'push' }}
98
+ with :
99
+ name : MinGW
100
+ delete-merged : true
Original file line number Diff line number Diff line change 33
33
34
34
steps :
35
35
- name : Checkout repository
36
- uses : actions/checkout@v3
36
+ uses : actions/checkout@v4
37
37
with :
38
38
fetch-depth : 0
39
39
submodules : recursive
53
53
move libusbK* libusbk
54
54
55
55
- name : Add MSBuild to PATH
56
- uses : microsoft/setup-msbuild@v1
56
+ uses : microsoft/setup-msbuild@v2
57
57
58
58
- name : Build
59
59
shell : cmd
65
65
)
66
66
67
67
- name : Upload artifacts
68
- uses : actions/upload-artifact@v3
68
+ uses : actions/upload-artifact@v4
69
69
if : ${{ github.event_name == 'push' }}
70
70
with :
71
71
name : VS2022
76
76
run : sha256sum ./*/*/examples/*.exe
77
77
78
78
- name : Compress release-ready version of Zadig
79
- uses : crazy-max/ghaction-upx@v2
79
+ uses : crazy-max/ghaction-upx@v3
80
80
if : startsWith(github.ref, 'refs/tags/')
81
81
with :
82
82
version : latest
94
94
sha256sum zadig-*.exe
95
95
96
96
- name : Upload release-ready version of Zadig
97
- uses : actions/upload-artifact@v3
97
+ uses : actions/upload-artifact@v4
98
98
if : startsWith(github.ref, 'refs/tags/')
99
99
with :
100
100
name : Zadig
101
101
path : ./zadig-*.exe
102
+
103
+ Merge-Artifacts :
104
+ runs-on : windows-latest
105
+ needs : VS2022-Build
106
+ steps :
107
+ - name : Merge Artifacts
108
+ uses : actions/upload-artifact/merge@v4
109
+ if : ${{ github.event_name == 'push' }}
110
+ with :
111
+ name : Zadig
112
+ delete-merged : true
Original file line number Diff line number Diff line change 7
7
#endif
8
8
9
9
VS_VERSION_INFO VERSIONINFO
10
- FILEVERSION 1,5,0,784
11
- PRODUCTVERSION 1,5,0,784
10
+ FILEVERSION 1,5,0,785
11
+ PRODUCTVERSION 1,5,0,785
12
12
FILEFLAGSMASK 0x17L
13
13
#ifdef _DEBUG
14
14
FILEFLAGS 0x1L
@@ -25,13 +25,13 @@ BEGIN
25
25
BEGIN
26
26
VALUE "CompanyName", "akeo.ie"
27
27
VALUE "FileDescription", "WDI-Simple"
28
- VALUE "FileVersion", "1.5.0.784 "
28
+ VALUE "FileVersion", "1.5.0.785 "
29
29
VALUE "InternalName", "WDI-Simple"
30
30
VALUE "LegalCopyright", "� 2010-2023 Pete Batard (LGPL v3)"
31
31
VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/lesser.html"
32
32
VALUE "OriginalFilename", "wdi-simple.exe"
33
33
VALUE "ProductName", "WDI-Simple"
34
- VALUE "ProductVersion", "1.5.0.784 "
34
+ VALUE "ProductVersion", "1.5.0.785 "
35
35
VALUE "Comments", "http://libwdi.akeo.ie"
36
36
END
37
37
END
Original file line number Diff line number Diff line change 60
60
#define FIELD_ORANGE RGB(255,240,200)
61
61
#define ARROW_GREEN RGB(92,228,65)
62
62
#define ARROW_ORANGE RGB(253,143,56)
63
- #define APP_VERSION "Zadig 2.8.784 "
63
+ #define APP_VERSION "Zadig 2.8.785 "
64
64
65
65
// These are used to flag end users about the driver they are going to replace
66
66
enum driver_type {
Original file line number Diff line number Diff line change 246
246
//
247
247
248
248
VS_VERSION_INFO VERSIONINFO
249
- FILEVERSION 2,8,784 ,0
250
- PRODUCTVERSION 2,8,784 ,0
249
+ FILEVERSION 2,8,785 ,0
250
+ PRODUCTVERSION 2,8,785 ,0
251
251
FILEFLAGSMASK 0x17L
252
252
#ifdef _DEBUG
253
253
FILEFLAGS 0x1L
@@ -264,13 +264,13 @@ BEGIN
264
264
BEGIN
265
265
VALUE "CompanyName", "akeo.ie"
266
266
VALUE "FileDescription", "Zadig"
267
- VALUE "FileVersion", "2.8.784 "
267
+ VALUE "FileVersion", "2.8.785 "
268
268
VALUE "InternalName", "Zadig"
269
269
VALUE "LegalCopyright", "� 2010-2023 Pete Batard (GPL v3)"
270
270
VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/gpl.html"
271
271
VALUE "OriginalFilename", "zadig.exe"
272
272
VALUE "ProductName", "Zadig"
273
- VALUE "ProductVersion", "2.8.784 "
273
+ VALUE "ProductVersion", "2.8.785 "
274
274
VALUE "Comments", "https://zadig.akeo.ie"
275
275
END
276
276
END
Original file line number Diff line number Diff line change 50
50
//
51
51
52
52
VS_VERSION_INFO VERSIONINFO
53
- FILEVERSION 1,5,0,784
54
- PRODUCTVERSION 1,5,0,784
53
+ FILEVERSION 1,5,0,785
54
+ PRODUCTVERSION 1,5,0,785
55
55
FILEFLAGSMASK 0x17L
56
56
#ifdef _DEBUG
57
57
FILEFLAGS 0x1L
@@ -68,13 +68,13 @@ BEGIN
68
68
BEGIN
69
69
VALUE "CompanyName", "akeo.ie"
70
70
VALUE "FileDescription", "libwdi: Windows Driver Installer Library"
71
- VALUE "FileVersion", "1.5.0.784 "
71
+ VALUE "FileVersion", "1.5.0.785 "
72
72
VALUE "InternalName", "libwdi"
73
73
VALUE "LegalCopyright", "� 2010-2023 Pete Batard (LGPL v3)"
74
74
VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/lesser.html"
75
75
VALUE "OriginalFilename", "libwdi"
76
76
VALUE "ProductName", "libwdi"
77
- VALUE "ProductVersion", "1.5.0.784 "
77
+ VALUE "ProductVersion", "1.5.0.785 "
78
78
VALUE "Comments", "http://libwdi.akeo.ie"
79
79
END
80
80
END
You can’t perform that action at this time.
0 commit comments