Skip to content

Commit 464c82e

Browse files
authored
Fix typo in permissions. fix buildkite download action (horovod#3536)
Signed-off-by: Enrico Minack <[email protected]>
1 parent bbcbc0d commit 464c82e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/gen-workflow-ci.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def trigger_buildkite_job(id: str, name: str, needs: List[str], mode: str) -> st
566566
f'\n'
567567
f' - name: Download Buildkite Artifacts\n'
568568
f' id: download\n'
569-
f' uses: docker://ghcr.io/enricomi/download-buildkite-artifact-action:v1\n'
569+
f' uses: EnricoMi/download-buildkite-artifact-action@v1\n'
570570
f' with:\n'
571571
f' buildkite_token: ${{{{ secrets.BUILDKITE_TOKEN }}}}\n'
572572
f' buildkite_build_url: ${{{{ steps.build.outputs.url }}}}\n'

.github/workflows/ci-results.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# steps "Fetch workflow conclusion" and "Fetch PR meta"
2626
actions: read
2727
# step "Fetch PR meta"
28-
content: read
28+
contents: read
2929
outputs:
3030
build-and-test: ${{ steps.workflow-conclusion.outputs.build-and-test }}
3131
pr-json: ${{ steps.pr.outputs.json }}
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Download Buildkite Artifacts
106106
id: download
107-
uses: docker://ghcr.io/enricomi/download-buildkite-artifact-action:v1
107+
uses: EnricoMi/download-buildkite-artifact-action@v1
108108
with:
109109
github_token: ${{ github.token }}
110110
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
@@ -183,7 +183,7 @@ jobs:
183183

184184
- name: Download Buildkite Artifacts
185185
id: download
186-
uses: docker://ghcr.io/enricomi/download-buildkite-artifact-action:v1
186+
uses: EnricoMi/download-buildkite-artifact-action@v1
187187
with:
188188
github_token: ${{ github.token }}
189189
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
@@ -238,7 +238,7 @@ jobs:
238238
permissions:
239239
# step "Download and Extract Artifacts"
240240
actions: read
241-
content: read
241+
contents: read
242242

243243
# steps "Publish Unit Test Results" and "Publish Unit Test Results (with flaky tests)"
244244
checks: write

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4388,7 +4388,7 @@ jobs:
43884388

43894389
- name: Download Buildkite Artifacts
43904390
id: download
4391-
uses: docker://ghcr.io/enricomi/download-buildkite-artifact-action:v1
4391+
uses: EnricoMi/download-buildkite-artifact-action@v1
43924392
with:
43934393
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
43944394
buildkite_build_url: ${{ steps.build.outputs.url }}
@@ -4437,7 +4437,7 @@ jobs:
44374437

44384438
- name: Download Buildkite Artifacts
44394439
id: download
4440-
uses: docker://ghcr.io/enricomi/download-buildkite-artifact-action:v1
4440+
uses: EnricoMi/download-buildkite-artifact-action@v1
44414441
with:
44424442
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
44434443
buildkite_build_url: ${{ steps.build.outputs.url }}

0 commit comments

Comments
 (0)