Skip to content
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
env:
OS_NAME: ${{ matrix.os }}
- name: Archive artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: ${{ matrix.rust == 'stable' }}
with:
name: stableartifacts-${{ matrix.os }}
Expand All @@ -82,7 +82,7 @@ jobs:
run: cargo install cargo-generate-rpm
# Download the ubuntu artifact instead of rebuilding.
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: stableartifacts-ubuntu-24.04
- name: Build RPM
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Test installation
run: floki -V
- name: Archive artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rpm
path: |
Expand Down Expand Up @@ -133,15 +133,15 @@ jobs:
CARGO_REGISTRY_TOKEN: ${{ secrets.PUBLISH_SECRET }}
# After publishing, create a release
- name: Download ubuntu artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: stableartifacts-ubuntu-24.04
- name: Download macos artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: stableartifacts-macos-latest
- name: Download RPM
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: rpm
- name: Generate release.txt
Expand Down Expand Up @@ -178,15 +178,15 @@ jobs:
run: cargo publish --dry-run
# Test downloading the artifacts
- name: Download ubuntu artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: stableartifacts-ubuntu-24.04
- name: Download macos artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: stableartifacts-macos-latest
- name: Download rpm
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: rpm
# Test generating release.txt
Expand Down