Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bootstrap_archives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Create bootstrap archive
run: ./scripts/generate-bootstraps.sh --architectures ${{ matrix.arch }}
- name: Store artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: bootstrap-archives-${{ matrix.arch }}-${{ github.sha }}
path: "*.zip"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,13 +263,13 @@ jobs:
find debs -type f -name "*.deb" -exec sha256sum "{}" \; | sort -k2 | tee checksum-${{ matrix.target_arch }}-${{ github.sha }}.txt
- name: Store checksums for built *.deb files
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: checksum-${{ matrix.target_arch }}-${{ github.sha }}
path: checksum-${{ matrix.target_arch }}-${{ github.sha }}.txt
- name: Store *.deb files
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: debs-${{ matrix.target_arch }}-${{ github.sha }}
path: ./artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# Archiving *.deb files in a tarball to avoid issues with uploading.
tar cf artifacts/debs-${{ github.sha }}.tar debs
- name: Store *.deb files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: debs-${{ github.sha }}
path: ./artifacts