Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: bump actions/upload-artifact from 3 to 4 #2957

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deb.yml
Expand Up @@ -53,7 +53,7 @@ jobs:
cp ../*.deb ./

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: v2ray-debian-packages
path: ./*.deb
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -165,7 +165,7 @@ jobs:
openssl dgst -sha512 $FILE | sed 's/([^)]*)//g' >>$DGST

- name: Upload ZIP file to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: v2ray-${{ steps.get_filename.outputs.ASSET_NAME }}.zip
path: v2ray-${{ steps.get_filename.outputs.ASSET_NAME }}.zip
Expand Down Expand Up @@ -229,17 +229,17 @@ jobs:
openssl dgst -sha256 $FILE | sed 's/([^)]*)//g' >>$DGST
openssl dgst -sha512 $FILE | sed 's/([^)]*)//g' >>$DGST

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Release.unsigned
path: build_artifacts/Release.unsigned

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Release.unsigned.dgst
path: build_artifacts/Release.unsigned.dgst

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: v2ray-extra.zip
path: build_artifacts/v2ray-extra.zip
Expand Down