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

.github: Bump {upload,download}-artifact to v4 in CI to solve deprecation errors #106

Merged
merged 1 commit into from
Jan 20, 2025
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/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
scripts/opentitan/swexit.py -t earlgrey -b 0x80 -o build-clang/exit_eg.bin
scripts/opentitan/swexit.py -t darjeeling -b 0x80 -o build-clang/exit_dj.bin
- name: Upload QEMU binary artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: qemu-bin
path: |
Expand All @@ -58,7 +58,7 @@ jobs:
build-clang/trace/*.h \
build-clang/compile_commands.json
- name: Upload QEMU source artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: qemu-src
path: qemu-src-artifact.tar.gz
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
sudo apt-get update &&
sudo apt-get install -y python3-pip
# ubuntu "latest" is too old to require --break-system-packages ...
pip3 install pylint
pip3 install pylint==3.3.3
- name: Check out QEMU
uses: actions/checkout@v4
- name: Lint Python code
Expand All @@ -110,7 +110,7 @@ jobs:
- name: Check out QEMU
uses: actions/checkout@v4
- name: Download QEMU source artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: qemu-src
- name: Unpack source artifacts
Expand All @@ -130,7 +130,7 @@ jobs:
sudo apt-get update &&
sudo apt-get install -y libpixman-1-0 libglib2.0-dev
- name: Download QEMU binary artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: qemu-bin
- name: Check machine availability
Expand Down
Loading