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
2 changes: 1 addition & 1 deletion .github/workflows/create_build_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
uses: actions/checkout@v6

- name: Download toolchains
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
merge-multiple: true
pattern: toolchain-host_linuxX64-target_*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_qmk_toolchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: actions/checkout@v6

- name: Download toolchains
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: toolchain-*-target_${{ matrix.target_host }}
path: .
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/checkout@v6

- name: Download toolchains
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: stripped-toolchains-*
path: .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/invoke_crosstool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
sudo mount | column -t

- name: Download source tarballs
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: tarballs

Expand All @@ -83,7 +83,7 @@ jobs:

- name: Download bootstrap toolchain
if: inputs.fetch_bootstrap == true
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: toolchain-host_${{ inputs.crosstool_host_os }}-target_${{ inputs.crosstool_host_os }}_qmk_bootstrap

Expand All @@ -102,7 +102,7 @@ jobs:

- name: Download build state
if: inputs.restore_state == true
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: state-host_${{ inputs.build_host }}-target_${{ inputs.target_host }}${{ inputs.toolchain_suffix }}-phase${{ env.LAST_PHASE_NUMBER }}

Expand Down