Skip to content

Commit

Permalink
fix: Add action version
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu committed Jun 8, 2021
1 parent c53d6ba commit c9d0b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7220,7 +7220,7 @@ var buildExec = function () {
var filepath = workingDir ?
workingDir + '/codecov.sh' : 'codecov.sh';
var execArgs = [filepath];
execArgs.push('-n', "" + name, '-F', "" + flags, '-Q', 'github-action');
execArgs.push('-n', "" + name, '-F', "" + flags, '-Q', 'github-action-1.5.1');
var options = {};
options.env = Object.assign(process.env, {
GITHUB_ACTION: process.env.GITHUB_ACTION,
Expand Down
2 changes: 1 addition & 1 deletion src/buildExec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const buildExec = () => {
workingDir + '/codecov.sh' : 'codecov.sh';

const execArgs = [filepath];
execArgs.push( '-n', `${name}`, '-F', `${flags}`, '-Q', 'github-action' );
execArgs.push( '-n', `${name}`, '-F', `${flags}`, '-Q', 'github-action-1.5.1' );

const options:any = {};
options.env = Object.assign(process.env, {
Expand Down

0 comments on commit c9d0b81

Please sign in to comment.