chore(deps): update github artifact actions
R
Renovate Bot
<renovate@whitesourcesoftware.com>
committete am 19.02.2026 08:07
bdb1bc07a9b0c2de226d78e91fb113f35daca066
| @@ -66,32 +66,32 @@ jobs: | ||
| 66 | 66 | tar -czf "dist/${BINARY_NAME}-${GOOS}-${GOARCH}.tar.gz" "${BIN}" |
| 67 | 67 | fi |
| 68 | 68 | |
| 69 | 69 | - name: Generate checksum |
| 70 | 70 | run: | |
| 71 | 71 | cd dist |
| 72 | 72 | sha256sum * > checksums-${{ matrix.goos }}-${{ matrix.goarch }}.txt |
| 73 | 73 | cat checksums-${{ matrix.goos }}-${{ matrix.goarch }}.txt |
| 74 | 74 | |
| 75 | 75 | - name: Upload artifact |
| 76 | -uses: actions/upload-artifact@v4 |
|
| 76 | +uses: actions/upload-artifact@v6 |
|
| 77 | 77 | with: |
| 78 | 78 | name: ${{ env.BINARY_NAME }}-${{ matrix.goos }}-${{ matrix.goarch }} |
| 79 | 79 | path: dist/* |
| 80 | 80 | if-no-files-found: error |
| 81 | 81 | |
| 82 | 82 | release: |
| 83 | 83 | needs: build |
| 84 | 84 | runs-on: ubuntu-latest |
| 85 | 85 | steps: |
| 86 | 86 | - name: Download all artifacts |
| 87 | -uses: actions/download-artifact@v4 |
|
| 87 | +uses: actions/download-artifact@v7 |
|
| 88 | 88 | with: |
| 89 | 89 | path: artifacts |
| 90 | 90 | merge-multiple: true |
| 91 | 91 | |
| 92 | 92 | - name: Merge checksums |
| 93 | 93 | run: | |
| 94 | 94 | cd artifacts |
| 95 | 95 | cat checksums-*.txt > checksums.txt |
| 96 | 96 | rm checksums-*.txt |
| 97 | 97 | echo "=== checksums.txt ===" |