Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/firmware-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
echo "Firmware Version: ${VERSION}"

- name: Upload Firmware Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: pico-fan-hub-firmware-v${{ steps.version.outputs.version }}
path: |
Expand All @@ -109,7 +109,7 @@ jobs:
retention-days: 90

- name: Upload UF2 for Release
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: pico_fan_hub.uf2
path: firmware/build/pico_fan_hub.uf2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
test -f dist/*.tar.gz || exit 1

- name: Upload Package Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: python-packages
path: software/driver/dist/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
cp pico_fan_hub.bin pico_fan_hub_${VERSION}.bin

- name: Upload Firmware Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: firmware-release
path: |
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
python -m build

- name: Upload Python Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: python-release
path: software/driver/dist/*
Expand Down