Skip to content

Commit

Permalink
fix(github-actions): avoid using the deprecated version of `actions/u…
Browse files Browse the repository at this point in the history
…pload-artifact` (chevdor#30)

References

- [Deprecation notice: v1 and v2 of the artifact actions](https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/)
  • Loading branch information
hituzi-no-sippo authored Sep 19, 2024
1 parent 103775c commit 9bc1ce5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cargo deb -p teracli -o "tera-cli_linux_amd64.deb"
- name: Upload Linux artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: linux
path: "tera-cli_linux_amd64.deb"
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
echo "SHA256=$SHA256" >> $GITHUB_ENV
- name: Upload MacOS artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: macos
path: |
Expand Down

0 comments on commit 9bc1ce5

Please sign in to comment.