From f30bb7886c7505ec378fcc82e79f75c124c758dc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 15:24:21 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v4 --- .github/workflows/linux-builds-on-master.yaml | 2 +- .github/workflows/linux-builds-on-pr.yaml | 2 +- .github/workflows/linux-builds-on-stable.yaml | 2 +- .github/workflows/macos-builds-on-all.yaml | 2 +- .github/workflows/windows-builds-on-master.yaml | 2 +- .github/workflows/windows-builds-on-pr.yaml | 2 +- .github/workflows/windows-builds-on-stable.yaml | 2 +- ci/actions-templates/linux-builds-template.yaml | 2 +- ci/actions-templates/macos-builds-template.yaml | 2 +- ci/actions-templates/windows-builds-template.yaml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/linux-builds-on-master.yaml b/.github/workflows/linux-builds-on-master.yaml index f164f52..25d0f12 100644 --- a/.github/workflows/linux-builds-on-master.yaml +++ b/.github/workflows/linux-builds-on-master.yaml @@ -124,7 +124,7 @@ jobs: -c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash' - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/linux-builds-on-pr.yaml b/.github/workflows/linux-builds-on-pr.yaml index 8882124..697cc64 100644 --- a/.github/workflows/linux-builds-on-pr.yaml +++ b/.github/workflows/linux-builds-on-pr.yaml @@ -119,7 +119,7 @@ jobs: -c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash' - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/linux-builds-on-stable.yaml b/.github/workflows/linux-builds-on-stable.yaml index e21a95a..2736a02 100644 --- a/.github/workflows/linux-builds-on-stable.yaml +++ b/.github/workflows/linux-builds-on-stable.yaml @@ -147,7 +147,7 @@ jobs: -c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash' - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/macos-builds-on-all.yaml b/.github/workflows/macos-builds-on-all.yaml index f67b169..eef777d 100644 --- a/.github/workflows/macos-builds-on-all.yaml +++ b/.github/workflows/macos-builds-on-all.yaml @@ -94,7 +94,7 @@ jobs: fi - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/windows-builds-on-master.yaml b/.github/workflows/windows-builds-on-master.yaml index 42f3181..1975590 100644 --- a/.github/workflows/windows-builds-on-master.yaml +++ b/.github/workflows/windows-builds-on-master.yaml @@ -102,7 +102,7 @@ jobs: run: bash ci/run.bash - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/windows-builds-on-pr.yaml b/.github/workflows/windows-builds-on-pr.yaml index dd3e34e..8fdec56 100644 --- a/.github/workflows/windows-builds-on-pr.yaml +++ b/.github/workflows/windows-builds-on-pr.yaml @@ -96,7 +96,7 @@ jobs: run: bash ci/run.bash - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/.github/workflows/windows-builds-on-stable.yaml b/.github/workflows/windows-builds-on-stable.yaml index d6a5c38..aa81a7d 100644 --- a/.github/workflows/windows-builds-on-stable.yaml +++ b/.github/workflows/windows-builds-on-stable.yaml @@ -99,7 +99,7 @@ jobs: run: bash ci/run.bash - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/ci/actions-templates/linux-builds-template.yaml b/ci/actions-templates/linux-builds-template.yaml index 3c7f0e9..a0e11d9 100644 --- a/ci/actions-templates/linux-builds-template.yaml +++ b/ci/actions-templates/linux-builds-template.yaml @@ -155,7 +155,7 @@ jobs: -c 'PATH="${PATH}":/rustc-sysroot/bin bash ci/run.bash' - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/ci/actions-templates/macos-builds-template.yaml b/ci/actions-templates/macos-builds-template.yaml index c5c4fe4..4c49d13 100644 --- a/ci/actions-templates/macos-builds-template.yaml +++ b/ci/actions-templates/macos-builds-template.yaml @@ -94,7 +94,7 @@ jobs: fi - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: | diff --git a/ci/actions-templates/windows-builds-template.yaml b/ci/actions-templates/windows-builds-template.yaml index 45ec28a..d84e473 100644 --- a/ci/actions-templates/windows-builds-template.yaml +++ b/ci/actions-templates/windows-builds-template.yaml @@ -110,7 +110,7 @@ jobs: run: bash ci/run.bash - name: Upload the built artifact if: false - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rustup-init-${{ matrix.target }} path: |