Skip to content

Commit

Permalink
fix: update deprecated CI actions
Browse files Browse the repository at this point in the history
actions/upload-artifact@v2 is no longer usable
  • Loading branch information
Frazew committed Nov 8, 2024
1 parent 5a27dfe commit 328fd78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
run: cargo deb
- name: Build rpm package
run: cargo rpm build
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}
path: target/debug/netbox2netshot
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}.rpm
path: target/release/rpmbuild/RPMS/x86_64/*.rpm
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}.deb
path: target/debian/*.deb

0 comments on commit 328fd78

Please sign in to comment.