Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
cargo clippy --all-targets --all-features -- -D warnings
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
cargo clippy --all-targets --all-features -- -D warnings
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
cargo clippy --all-targets --all-features -- -D warnings
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -665,7 +665,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down Expand Up @@ -834,7 +834,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down Expand Up @@ -1028,7 +1028,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down Expand Up @@ -1154,7 +1154,7 @@ jobs:
fi
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -1285,7 +1285,7 @@ jobs:
fi
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion ci/actions-templates/linux-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs: # skip-main skip-pr skip-stable
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion ci/actions-templates/macos-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs: # skip-x86_64 skip-aarch64
fi
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion ci/actions-templates/windows-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs: # skip-main skip-pr skip-stable
cargo clippy --all-targets --all-features -- -D warnings
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
Loading