diff --git a/lib/run.js b/lib/run.js index 061a9ea..c2ed762 100644 --- a/lib/run.js +++ b/lib/run.js @@ -134,8 +134,7 @@ function getLatestHelmVersionFor(type) { console.log(type); const token = core.getInput('token', { 'required': true }); const versions = yield graphql_1.graphql(` - repository(name:"helm" - owner:"helm") { + repository(name:"helm", owner:"helm") { releases(last: 100) { nodes { tagName diff --git a/src/run.ts b/src/run.ts index 0bd1aa3..f773701 100644 --- a/src/run.ts +++ b/src/run.ts @@ -112,8 +112,7 @@ async function getLatestHelmVersionFor(type) { const token = core.getInput('token', { 'required': true }); const versions = await graphql( ` - repository(name:"helm" - owner:"helm") { + repository(name:"helm", owner:"helm") { releases(last: 100) { nodes { tagName