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

[major, fix] workflows: bump actions version and remove unsupported runner 18.04 #5381

Merged
merged 5 commits into from
Apr 9, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
check.yml: bump actions/upload-artifacts to v3
  • Loading branch information
kbdharun committed Apr 7, 2023
commit 7656d224380ea6145b8ecfa4b63b67d8d7cac715
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
if: failure() || cancelled()
run: mv _build/meson-logs/* test-logs/ || true
- name: Upload test logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: failure() || cancelled()
with:
name: test logs
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
if: failure() || cancelled()
run: mv _build/tests/*.log test-logs/ || true
- name: Upload test logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: failure() || cancelled()
with:
name: test logs
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
if: failure() || cancelled()
run: mv _build/tests/*.log test-logs/ || true
- name: Upload test logs
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: failure() || cancelled()
with:
name: test logs
Expand Down