Skip to content

Commit 328fd78

Browse files
committed
fix: update deprecated CI actions
actions/upload-artifact@v2 is no longer usable
1 parent 5a27dfe commit 328fd78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
run: cargo deb
3737
- name: Build rpm package
3838
run: cargo rpm build
39-
- uses: actions/upload-artifact@v2
39+
- uses: actions/upload-artifact@v4
4040
with:
4141
name: netbox2netshot-${{ github.sha }}
4242
path: target/debug/netbox2netshot
43-
- uses: actions/upload-artifact@v2
43+
- uses: actions/upload-artifact@v4
4444
with:
4545
name: netbox2netshot-${{ github.sha }}.rpm
4646
path: target/release/rpmbuild/RPMS/x86_64/*.rpm
47-
- uses: actions/upload-artifact@v2
47+
- uses: actions/upload-artifact@v4
4848
with:
4949
name: netbox2netshot-${{ github.sha }}.deb
5050
path: target/debian/*.deb

0 commit comments

Comments
 (0)