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/example_reusable-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
with:
fetch-depth: 1
- name: Download All Matrix Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: build-artifacts
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_deploy-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
jf rt ping

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: ${{ inputs.gh-artifact-name }}
path: ./build-artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_sign-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
CHECKOUT_REF: ${{ inputs.gh-workflows-ref }}
steps:
- name: Download Unsigned Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: ${{ inputs.gh-unsigned-artifacts }}
path: unsigned-artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_sign-artifacts-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
with:
dotnet-version: 8.x
- name: Download Signed Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: ${{ needs.test-sign-workflow.outputs.gh-artifact-name }}
path: signed
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v5
- name: Download Test Fixtures
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: test-fixtures
path: test-fixtures
Expand Down
Loading