diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index f5e49358..6bf3fcbe 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }} diff --git a/builder/.github/workflows/create-release.yml b/builder/.github/workflows/create-release.yml index 92dd531d..c3ce9d07 100644 --- a/builder/.github/workflows/create-release.yml +++ b/builder/.github/workflows/create-release.yml @@ -181,7 +181,7 @@ jobs: | grep -v 'Warning' > "${{ matrix.builders.name }}-info.md" - name: Upload info for ${{ matrix.builders.name }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: "${{ matrix.builders.name }}-info.md" path: "${{ matrix.builders.name }}-info.md" diff --git a/builder/.github/workflows/test-pull-request.yml b/builder/.github/workflows/test-pull-request.yml index 032878c1..1223b1a0 100644 --- a/builder/.github/workflows/test-pull-request.yml +++ b/builder/.github/workflows/test-pull-request.yml @@ -103,7 +103,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }} diff --git a/implementation/.github/workflows/compile-dependency.yml b/implementation/.github/workflows/compile-dependency.yml index 777209c9..5be22fe4 100644 --- a/implementation/.github/workflows/compile-dependency.yml +++ b/implementation/.github/workflows/compile-dependency.yml @@ -99,7 +99,7 @@ jobs: arch="${{ inputs.arch }}" - name: Upload compiled artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: ${{ inputs.shouldCompile == true || inputs.shouldCompile == 'true' }} with: name: '${{ inputs.uploadArtifactName }}' diff --git a/implementation/.github/workflows/test-pull-request.yml b/implementation/.github/workflows/test-pull-request.yml index 4fd76c6a..855ea618 100644 --- a/implementation/.github/workflows/test-pull-request.yml +++ b/implementation/.github/workflows/test-pull-request.yml @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }} diff --git a/implementation/.github/workflows/update-dependencies-from-metadata.yml b/implementation/.github/workflows/update-dependencies-from-metadata.yml index a4ab99a6..46fdc038 100644 --- a/implementation/.github/workflows/update-dependencies-from-metadata.yml +++ b/implementation/.github/workflows/update-dependencies-from-metadata.yml @@ -65,13 +65,13 @@ jobs: echo "compilation-length=$complength" >> "$GITHUB_OUTPUT" - name: Upload `${{ steps.retrieve.outputs.metadata-filepath }}` - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: metadata.json path: ${{ steps.retrieve.outputs.metadata-filepath }} - name: Upload `${{ steps.retrieve.outputs.from-source-metadata-filepath }}` - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: from-source-metadata.json path: ${{ steps.retrieve.outputs.from-source-metadata-filepath }} @@ -264,7 +264,7 @@ jobs: arch: ${{ matrix.includes.arch }} - name: Upload modified metadata - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ steps.dependency-metadata.outputs.file }} path: ${{ steps.dependency-metadata.outputs.file }} diff --git a/language-family/.github/workflows/test-pull-request.yml b/language-family/.github/workflows/test-pull-request.yml index 1bfa8c37..b24b0f55 100644 --- a/language-family/.github/workflows/test-pull-request.yml +++ b/language-family/.github/workflows/test-pull-request.yml @@ -78,7 +78,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }} diff --git a/library/.github/workflows/test-pull-request.yml b/library/.github/workflows/test-pull-request.yml index 508f8e40..39fb2b64 100644 --- a/library/.github/workflows/test-pull-request.yml +++ b/library/.github/workflows/test-pull-request.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }} diff --git a/stack/.github/workflows/create-release.yml b/stack/.github/workflows/create-release.yml index 5f983dea..2c23dfa1 100644 --- a/stack/.github/workflows/create-release.yml +++ b/stack/.github/workflows/create-release.yml @@ -219,7 +219,7 @@ jobs: usns-output-path: "${{ github.workspace }}/${{ env.USNS_NOTICES_ARTIFACT }}.json" - name: Upload USNs notices - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ env.USNS_NOTICES_ARTIFACT }} path: "${{ github.workspace }}/${{ env.USNS_NOTICES_ARTIFACT }}.json" @@ -347,7 +347,7 @@ jobs: output_path: "${{ github.workspace }}/${{ matrix.arch.name }}-package-list-${{ matrix.stacks.name }}" - name: Upload package list file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-package-list.json" path: "${{ github.workspace }}/${{ matrix.arch.name }}-package-list-${{ matrix.stacks.name }}" @@ -415,7 +415,7 @@ jobs: usns_output_path: "./${{ matrix.arch.name }}-${{ matrix.stacks.name }}-${{ env.PATCHED_USNS_FILENAME }}" - name: Upload USNs file - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-${{ env.PATCHED_USNS_FILENAME }}" path: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-${{ env.PATCHED_USNS_FILENAME }}" @@ -517,7 +517,7 @@ jobs: fi - name: Upload run image hash code - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: hash-code-current-run-image-${{ matrix.arch.name }}-${{ matrix.stacks.name }} path: hash-code-current-run-image-${{ matrix.arch.name }}-${{ matrix.stacks.name }} @@ -525,7 +525,7 @@ jobs: - name: Upload build image hash code if: ${{ matrix.stacks.create_build_image == true }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: hash-code-current-build-image-${{ matrix.arch.name }}-${{ matrix.stacks.name }} path: hash-code-current-build-image-${{ matrix.arch.name }}-${{ matrix.stacks.name }} @@ -649,7 +649,7 @@ jobs: --run-receipt current-run-receipt-${{ matrix.stacks.name }} - name: Upload run image - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-run-image-${{ matrix.stacks.name }} path: "${{ matrix.stacks.output_dir }}/run.oci" @@ -657,7 +657,7 @@ jobs: - name: Upload build image if: ${{ matrix.stacks.create_build_image == true }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-build-image-${{ matrix.stacks.name }} path: "${{ matrix.stacks.output_dir }}/build.oci" @@ -665,14 +665,14 @@ jobs: - name: Upload Build receipt if: ${{ matrix.stacks.create_build_image == true }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-build-receipt-${{ matrix.stacks.name }} path: "*current-build-receipt-${{ matrix.stacks.name }}" if-no-files-found: error - name: Upload Run receipt - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-run-receipt-${{ matrix.stacks.name }} path: "*current-run-receipt-${{ matrix.stacks.name }}" @@ -863,7 +863,7 @@ jobs: cp "${{ github.workspace }}/${{ env.RUN_DIFF_REMOVED_FILENAME }}" "$diffs_dir/run_removed_with_force" - name: Upload diff-${{ matrix.arch.name }}-${{ matrix.stacks.name }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: diff-${{ matrix.arch.name }}-${{ matrix.stacks.name }} path: diff-${{ matrix.arch.name }}-${{ matrix.stacks.name }} @@ -953,7 +953,7 @@ jobs: release_body_file: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-release-notes.md" - name: Upload ${{ matrix.arch.name }} release notes file for stack ${{ matrix.stacks.name }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-release-notes.md" path: "${{ matrix.arch.name }}-${{ matrix.stacks.name }}-release-notes.md" diff --git a/stack/.github/workflows/test-pull-request.yml b/stack/.github/workflows/test-pull-request.yml index 9b96c13b..f7fabbe4 100644 --- a/stack/.github/workflows/test-pull-request.yml +++ b/stack/.github/workflows/test-pull-request.yml @@ -69,7 +69,7 @@ jobs: --build-dir ${{ matrix.stacks.output_dir }} - name: Upload run image - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-run-image-${{ matrix.stacks.name }} path: "${{ matrix.stacks.output_dir }}/run.oci" @@ -77,7 +77,7 @@ jobs: - name: Upload build image if: ${{ matrix.stacks.create_build_image == true }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: current-build-image-${{ matrix.stacks.name }} path: "${{ matrix.stacks.output_dir }}/build.oci" @@ -127,7 +127,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: event-payload path: ${{ github.event_path }}