Skip to content

Commit 5b848da

Browse files
committed
ci: upload artifacts update
1 parent f5d013f commit 5b848da

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
permissions:
1515
contents: write
1616
pull-requests: write
17-
17+
1818
jobs:
1919
# Update release PR
2020
release_please:
@@ -160,15 +160,15 @@ jobs:
160160
cd -
161161
162162
- name: Release | Upload artifacts
163-
uses: actions/upload-artifact@v3
163+
uses: actions/upload-artifact@v4
164164
with:
165165
name: ${{ matrix.name }}
166166
path: ${{ matrix.name }}
167167

168168
- name: Release | Upload installer artifacts [Windows]
169169
continue-on-error: true
170170
if: matrix.os == 'windows-latest' && matrix.target != 'aarch64-pc-windows-msvc'
171-
uses: actions/upload-artifact@v3
171+
uses: actions/upload-artifact@v4
172172
with:
173173
name: cook-${{ matrix.target }}.msi
174174
path: target/wix/cook-${{ matrix.target }}.msi
@@ -225,7 +225,7 @@ jobs:
225225
xcrun notarytool store-credentials "$KEYCHAIN_ENTRY" --team-id "$APPLEID_TEAMID" --apple-id "$APPLEID_USERNAME" --password "$APPLEID_PASSWORD" --keychain "$KEYCHAIN_PATH"
226226
227227
- name: Notarize | Download artifacts
228-
uses: actions/download-artifact@v3
228+
uses: actions/download-artifact@v4
229229
with:
230230
name: ${{ matrix.name }}
231231
path: artifacts
@@ -252,7 +252,7 @@ jobs:
252252
run: tar czvf ${{ matrix.name }} cook
253253

254254
- name: Notarize | Upload Notarized Binary
255-
uses: actions/upload-artifact@v3
255+
uses: actions/upload-artifact@v4
256256
with:
257257
name: ${{ matrix.name }}
258258
path: ${{ matrix.name }}
@@ -270,7 +270,7 @@ jobs:
270270
runs-on: ubuntu-latest
271271
steps:
272272
- name: Setup | Artifacts
273-
uses: actions/download-artifact@v3
273+
uses: actions/download-artifact@v4
274274

275275
- name: Setup | Checksums
276276
run: for file in cook-*/cook-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done

0 commit comments

Comments
 (0)