Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-long-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/environments/hil-write" \
| jq -e '.protection_rules | any(.type == "required_reviewers" and (.reviewers | length > 0))' >/dev/null
- name: Fetch artifact before long execution
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.artifact-name }}
run-id: ${{ inputs.artifact-run-id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
test "$(printf '%s' "$run" | jq -r .conclusion)" = success

- name: Download existing candidate assets
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.artifact_name }}
path: target/candidate-assets
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ jobs:

- name: Download package artifact from current run
if: ${{ inputs.artifact_run_id == '' }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.artifact_name }}
path: target/package-stage

- name: Download package artifact from explicit source run
if: ${{ inputs.artifact_run_id != '' }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.artifact_name }}
path: target/package-stage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
rustup default 1.97.1

- name: Download amd64 stage
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: candidate-amd64
path: target/native/amd64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-candidate-finalize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Prepare dry-run product snapshot from explicit source run
if: ${{ inputs.dry_run }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.product_artifact_name }}
path: target/finalize/assets
Expand All @@ -152,7 +152,7 @@ jobs:

- name: Prepare dry-run gate reports from explicit source run
if: ${{ inputs.dry_run }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.reports_artifact_name }}
path: target/finalize/reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: sh scripts/release/ensure-runner-tools.sh github

- name: Download protected finalizer approval from explicit source run
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: ${{ inputs.finalized_artifact_name }}
path: target/approved
Expand Down
Loading