Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create_qmk_toolchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
done

- name: Upload toolchain
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: stripped-toolchains-target_${{ matrix.target_host }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/download_tarballs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
tar acvf tarballs.tar.zst tarballs

- name: Upload source tarballs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: tarballs
path: tarballs.tar.zst
6 changes: 3 additions & 3 deletions .github/workflows/invoke_crosstool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
find . \( -name \*.log \) -print0 | xargs -0 tar acvf build_logs.tar.zst || true

- name: Upload build logs
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always() && !cancelled()
with:
name: build.log-host_${{ inputs.build_host }}-target_${{ inputs.target_host }}${{ inputs.toolchain_suffix }}-phase${{ inputs.phase_number }}
Expand All @@ -179,7 +179,7 @@ jobs:

- name: Upload build state
if: inputs.save_state == true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: state-host_${{ inputs.build_host }}-target_${{ inputs.target_host }}${{ inputs.toolchain_suffix }}-phase${{ inputs.phase_number }}
path: state.tar.zst
Expand All @@ -198,7 +198,7 @@ jobs:

- name: Upload toolchain
if: inputs.toolchain_tarball == true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: toolchain-host_${{ inputs.build_host }}-target_${{ inputs.target_host }}${{ inputs.toolchain_suffix }}
path: |
Expand Down