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

CI: upload-artifact version must be in sync with download-artifact #583

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Packaging
run: make -C dist/debian
- name: Pub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-linux20
path: dist/debian/*.deb
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Packaging
run: make -C dist/debian
- name: Pub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-linux22
path: dist/debian/*.deb
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Building r2frida
run: ./configure && make -j && sudo make install
- name: Pub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-agent
path: src/_agent.js2
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Packaging
run: make -C dist/macos
- name: Pub
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: build-macos
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
shell: cmd
# run: zip -r r2frida-${{env.R2V}}-w64.zip src\io_frida.dll
run: zip -r r2frida-${{env.R2V}}-w64.zip src\r2frida-compile.exe
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: build-windows
Expand Down
Loading