diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a41fdef55..8e4b7592d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -128,7 +128,7 @@ jobs: continue-on-error: true if: matrix.os == 'windows-latest' id: unsigned-artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: unsigned-${{ matrix.name }} path: | @@ -163,7 +163,7 @@ jobs: cd - - name: Release | Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.name }} path: ${{ matrix.name }} @@ -171,7 +171,7 @@ jobs: - name: Release | Upload installer artifacts [Windows] continue-on-error: true if: matrix.os == 'windows-latest' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: starship-${{ matrix.target }}.msi path: target/${{ matrix.target }}/release/starship-${{ matrix.target }}.msi @@ -249,7 +249,7 @@ jobs: npm run build - name: Notarize | Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: ${{ matrix.name }} path: artifacts @@ -261,7 +261,7 @@ jobs: run: bash install/macos_packages/build_and_notarize.sh starship docs ${{ matrix.arch }} ${{ matrix.pkgname }} - name: Notarize | Upload Notarized Flat Installer - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.pkgname }} path: ${{ matrix.pkgname }} @@ -270,7 +270,7 @@ jobs: run: tar czvf ${{ matrix.name }} starship - name: Notarize | Upload Notarized Binary - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.name }} path: ${{ matrix.name }} @@ -289,7 +289,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup | Artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - name: Setup | Checksums run: for file in starship-*/starship-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done @@ -375,7 +375,7 @@ jobs: - name: Setup | Checkout uses: actions/checkout@v6 - name: Setup | Artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - run: pwsh ./install/windows/choco/update.ps1 env: STARSHIP_VERSION: ${{ needs.release_please.outputs.tag_name }} diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 579dcacc8..7f55a6272 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -228,7 +228,7 @@ jobs: STARSHIP_VERSION: v1.2.3 - name: Sign | Upload Executable [Windows] - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 continue-on-error: true id: unsigned-artifacts if: matrix.os == 'windows-latest' && matrix.rust == 'stable' && github.event_name == 'push' && github.repository == 'starship/starship'