Skip to content

Commit

Permalink
fix: refer to audit scanner repository
Browse files Browse the repository at this point in the history
The step used to download the CRDs from the audit scanner release was using a variable defined in another step. Fix that by using the proper variable.

Signed-off-by: José Guilherme Vanz <[email protected]>
  • Loading branch information
jvanz authored Aug 9, 2023
1 parent f97af7c commit 52b0650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
console.log(`Fetching asset ID: ${crds_asset_id}`)
if (typeof(crds_asset_id) === "number") {
let asset = await github.rest.repos.getReleaseAsset({
owner: owner, repo: controller_repo, asset_id: crds_asset_id, headers:{
owner: owner, repo: audit_scanner_repo, asset_id: crds_asset_id, headers:{
accept: "application/octet-stream"},
})
let fs = require('fs');
Expand Down

0 comments on commit 52b0650

Please sign in to comment.