build(deps): update github artifact actions (major) (#7295)

build(deps): update github artifact actions

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2026-02-28 18:57:23 +01:00
committed by GitHub
parent e7c75950c8
commit 4ede45c4fa
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -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 }}
+1 -1
View File
@@ -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'