Skip to content

Commit

Permalink
Bump upx to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed May 23, 2023
1 parent 8ac1f0e commit 0676c6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [2.3.0] - 2023-05-23
- Update dependencies
- Update upx to 4.0.2

## [2.2.0] - 2023-01-13
- Add glob support [#23](https://github.com/svenstaro/upx-action/pull/23) (thanks @lanwen)

Expand Down
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as glob from 'glob'
import * as path from 'path'

async function downloadUpx(): Promise<string> {
const upx_version = '4.0.1'
const upx_version = '4.0.2'
const tmpdir = fs.mkdtempSync(path.join(os.tmpdir(), 'upx-action-'))
if (os.type() == 'Linux') {
await exec.exec(
Expand Down

0 comments on commit 0676c6c

Please sign in to comment.