Skip to content

Commit

Permalink
update actions/upload-artifact to use v4
Browse files Browse the repository at this point in the history
  • Loading branch information
keinsell committed Feb 2, 2025
1 parent 28e5c2c commit 0b32b8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: cargo build --release --target ${{ matrix.target }}

- name: Save artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: neuronek-cli-${{ matrix.target }}
path: |
Expand All @@ -84,7 +84,7 @@ jobs:
run: nix build

- name: Upload build result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nix-build-result
path: ./result
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ jobs:

# Upload package
- name: Upload Nix package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nix-package
path: ./result

0 comments on commit 0b32b8c

Please sign in to comment.