Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed Jan 6, 2021
1 parent 54fde9c commit d039b35
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5220,8 +5220,9 @@ async function main () {
return
}
const generatedChangelog = (await fs.readFile(changelogFile)).toString('utf8')
const version = (await fs.readFile('.version')).toString('utf8')
await fs.unlink('.version')
const versionFilename = (core.getInput('dry')) ? '.version-unreleased' : '.version'
const version = (await fs.readFile(versionFilename)).toString('utf8')
await fs.unlink(versionFilename)
const parsedVersion = new SemVer(version)
core.setOutput('changelog', generatedChangelog)
core.debug(`setting version to ${parsedVersion.version}`)
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"husky": "^4.3.5",
"husky": "^4.3.6",
"standard": "^16.0.3"
},
"husky": {
Expand Down

0 comments on commit d039b35

Please sign in to comment.