diff --git a/.github/workflows/example_reusable-integration.yaml b/.github/workflows/example_reusable-integration.yaml index 12a0ce8..28b2fc4 100644 --- a/.github/workflows/example_reusable-integration.yaml +++ b/.github/workflows/example_reusable-integration.yaml @@ -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 diff --git a/.github/workflows/reusable_deploy-artifacts.yaml b/.github/workflows/reusable_deploy-artifacts.yaml index 22cbab2..1d0e08d 100644 --- a/.github/workflows/reusable_deploy-artifacts.yaml +++ b/.github/workflows/reusable_deploy-artifacts.yaml @@ -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 diff --git a/.github/workflows/reusable_sign-artifacts.yaml b/.github/workflows/reusable_sign-artifacts.yaml index 897b7c5..6f9f3f4 100644 --- a/.github/workflows/reusable_sign-artifacts.yaml +++ b/.github/workflows/reusable_sign-artifacts.yaml @@ -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 diff --git a/.github/workflows/test_sign-artifacts-workflow.yaml b/.github/workflows/test_sign-artifacts-workflow.yaml index 22844c0..865dfdb 100644 --- a/.github/workflows/test_sign-artifacts-workflow.yaml +++ b/.github/workflows/test_sign-artifacts-workflow.yaml @@ -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 @@ -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