Skip to content

Commit

Permalink
fix: bad reference
Browse files Browse the repository at this point in the history
  • Loading branch information
cdotyab authored and cdotyab committed Nov 17, 2022
1 parent 5838afa commit a19765d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/version/toml.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = class Toml extends BaseVersioning {
// Get the name of where the version is in
const versionName = this.versionPath.split('.').pop()

core.info(`Bumped file "${this.fileLocation}" from "${oldVersion}" to "${this.newVersion}"`)
core.info(`Bumped file "${this.fileLocation}" from "${this.oldVersion}" to "${this.newVersion}"`)

this.update(
// We use replace instead of yaml.stringify so we can preserve white spaces and comments
Expand Down
2 changes: 1 addition & 1 deletion src/version/yaml.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module.exports = class Yaml extends BaseVersioning {
// Get the name of where the version is in
const versionName = this.versionPath.split('.').pop()

core.info(`Bumped file "${this.fileLocation}" from "${oldVersion}" to "${this.newVersion}"`)
core.info(`Bumped file "${this.fileLocation}" from "${this.oldVersion}" to "${this.newVersion}"`)

this.update(
// We use replace instead of yaml.stringify so we can preserve white spaces and comments
Expand Down

0 comments on commit a19765d

Please sign in to comment.