Skip to content

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 17, 2023
1 parent 6115956 commit aafdac5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: matrix.mode == 'release'
with:
name: rustup-init-${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-builds-on-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
fi
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
cargo clippy --workspace --all-targets --features test
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
cargo clippy --workspace --all-targets --features test
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-builds-on-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
cargo clippy --workspace --all-targets --features test
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
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 @@ -162,7 +162,7 @@ jobs:
"${DOCKER}" \
-c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash'
- name: Upload the built artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
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 @@ -104,7 +104,7 @@ jobs:
fi
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
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 @@ -130,7 +130,7 @@ jobs:
cargo clippy --workspace --all-targets --features test
- name: Upload the built artifact
if: matrix.mode == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rustup-init-${{ matrix.target }}
path: |
Expand Down

0 comments on commit aafdac5

Please sign in to comment.