Skip to content

Commit 9bc1ce5

Browse files
fix(github-actions): avoid using the deprecated version of actions/upload-artifact (#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/)
1 parent 103775c commit 9bc1ce5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
cargo deb -p teracli -o "tera-cli_linux_amd64.deb"
3232
3333
- name: Upload Linux artifacts
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: linux
3737
path: "tera-cli_linux_amd64.deb"
@@ -81,7 +81,7 @@ jobs:
8181
echo "SHA256=$SHA256" >> $GITHUB_ENV
8282
8383
- name: Upload MacOS artifacts
84-
uses: actions/upload-artifact@v2
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: macos
8787
path: |

0 commit comments

Comments
 (0)