Skip to content

Commit c17294b

Browse files
authored
fix(ci): Correct github.actions.rest to github.rest.actions (#15153)
Correct github.actions.rest to github.rest.actions In #15142 we introduced the split between the trusted and untrusted regresison detector workflow. Unfortunately the trusted side can only be tested once it's merged into master branch and we had a bug. The github-scripts that download artifacts referenced `github.actions.rest` when it should have read `github.rest.actions`. Please note that because of the nature of workflow_run triggered workflows this change will not be reflected in the PR's workflow runs. Signed-off-by: Brian L. Troutwine <[email protected]> Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent 067795e commit c17294b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/regression_trusted.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
9191
console.log("Downloading artifact %s", matchArtifact.id);
9292
93-
var download = await github.actions.rest.downloadArtifact({
93+
var download = await github.rest.actions.downloadArtifact({
9494
owner: context.repo.owner,
9595
repo: context.repo.repo,
9696
artifact_id: matchArtifact.id,
@@ -160,7 +160,7 @@ jobs:
160160
161161
console.log("Downloading artifact %s", matchArtifact.id);
162162
163-
var download = await github.actions.rest.downloadArtifact({
163+
var download = await github.rest.actions.downloadArtifact({
164164
owner: context.repo.owner,
165165
repo: context.repo.repo,
166166
artifact_id: matchArtifact.id,
@@ -228,7 +228,7 @@ jobs:
228228
229229
console.log("Downloading artifact %s", matchArtifact.id);
230230
231-
var download = await github.actions.rest.downloadArtifact({
231+
var download = await github.rest.actions.downloadArtifact({
232232
owner: context.repo.owner,
233233
repo: context.repo.repo,
234234
artifact_id: matchArtifact.id,

0 commit comments

Comments
 (0)