Skip to content

Commit

Permalink
ci: let
Browse files Browse the repository at this point in the history
  • Loading branch information
tsi committed Dec 28, 2023
1 parent 183fce8 commit b991059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/calculate-edge-version/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const core = require('@actions/core');
const semver = require('semver');

try {
const packageVersion = core.getInput('version', { require: true });
let packageVersion = core.getInput('version', { require: true });

// Remove initial v if present
if (packageVersion.charAt(0) === 'v') {
Expand Down

0 comments on commit b991059

Please sign in to comment.