Skip to content

Commit

Permalink
Prepare for 5.2.5 release
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 30, 2024
1 parent 89ca8d7 commit 94385ab
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
wget https://go.dev/dl/go1.19.3.linux-amd64.tar.gz
tar -xvf go1.19.3.linux-amd64.tar.gz
mv go /usr/local/
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
with:
repository: CycloneDX/cdxgen
path: cdxgen
ref: 'v10.0.0'
- name: Checkout cdxgen
uses: actions/checkout@v4
with:
Expand All @@ -38,13 +37,13 @@ jobs:
with:
python-version: '3.11'
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '^1.19.8'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
with:
python-version: '3.11'
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.x
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '^1.19.8'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<key>CFBundleName</key>
<string>depscan</string>
<key>CFBundleVersion</key>
<string>5.2.4</string>
<string>5.2.5</string>
</dict>
</plist>
8 changes: 4 additions & 4 deletions file_version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0. Must always contain 4 elements.
filevers=(5,2,4,0),
prodvers=(5,2,4,0),
filevers=(5,2,5,0),
prodvers=(5,2,5,0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -32,12 +32,12 @@ VSVersionInfo(
u'040904B0',
[StringStruct(u'CompanyName', u'OWASP Foundation'),
StringStruct(u'FileDescription', u'depscan - The Dependency Scanner'),
StringStruct(u'FileVersion', u'5.2.4.0'),
StringStruct(u'FileVersion', u'5.2.5.0'),
StringStruct(u'InternalName', u'depscan'),
StringStruct(u'LegalCopyright', u'© OWASP Foundation. All rights reserved.'),
StringStruct(u'OriginalFilename', u'depscan.exe'),
StringStruct(u'ProductName', u'depscan'),
StringStruct(u'ProductVersion', u'5.2.4.0')])
StringStruct(u'ProductVersion', u'5.2.5.0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit 94385ab

Please sign in to comment.