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/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion builder/.github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion builder/.github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion implementation/.github/workflows/compile-dependency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'
Expand Down
2 changes: 1 addition & 1 deletion implementation/.github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion language-family/.github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion library/.github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
22 changes: 11 additions & 11 deletions stack/.github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }}"
Expand Down Expand Up @@ -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 }}"
Expand Down Expand Up @@ -517,15 +517,15 @@ 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 }}
if-no-files-found: error

- 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 }}
Expand Down Expand Up @@ -649,30 +649,30 @@ 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"
if-no-files-found: error

- 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"
if-no-files-found: error

- 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 }}"
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions stack/.github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ 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"
if-no-files-found: error

- 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"
Expand Down Expand Up @@ -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 }}
Loading