summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2025-11-06 23:43:35 +0000
committerQMK Bot <hello@qmk.fm>2025-11-06 23:43:35 +0000
commit4b393a1ff58ae51977c82b2b9ece65b21b0943c6 (patch)
tree1ea57e67d912e52641ac36a1df208f935101eac1
parent01952bf39aadc42a70221f91d8cc0536ad458b04 (diff)
parent8522449ccfa36d19c82317e8a49e58862e366c66 (diff)
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--.github/workflows/ci_build_major_branch.yml2
-rw-r--r--.github/workflows/ci_build_major_branch_keymap.yml10
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci_build_major_branch.yml b/.github/workflows/ci_build_major_branch.yml
index c37e1377b1..6cefd58901 100644
--- a/.github/workflows/ci_build_major_branch.yml
+++ b/.github/workflows/ci_build_major_branch.yml
@@ -87,7 +87,7 @@ jobs:
87 fetch-depth: 0 87 fetch-depth: 0
88 88
89 - name: Download firmwares 89 - name: Download firmwares
90 uses: actions/download-artifact@v5 90 uses: actions/download-artifact@v6
91 with: 91 with:
92 pattern: firmware-* 92 pattern: firmware-*
93 path: . 93 path: .
diff --git a/.github/workflows/ci_build_major_branch_keymap.yml b/.github/workflows/ci_build_major_branch_keymap.yml
index 1a0b44b908..f5533cf07a 100644
--- a/.github/workflows/ci_build_major_branch_keymap.yml
+++ b/.github/workflows/ci_build_major_branch_keymap.yml
@@ -62,7 +62,7 @@ jobs:
62 echo "targets=$(jq -c 'keys' targets.json)" >> $GITHUB_OUTPUT 62 echo "targets=$(jq -c 'keys' targets.json)" >> $GITHUB_OUTPUT
63 63
64 - name: Upload targets json 64 - name: Upload targets json
65 uses: actions/upload-artifact@v4 65 uses: actions/upload-artifact@v5
66 with: 66 with:
67 name: targets-${{ inputs.keymap }} 67 name: targets-${{ inputs.keymap }}
68 path: targets.json 68 path: targets.json
@@ -92,7 +92,7 @@ jobs:
92 uses: actions/checkout@v5 92 uses: actions/checkout@v5
93 93
94 - name: Get target definitions 94 - name: Get target definitions
95 uses: actions/download-artifact@v5 95 uses: actions/download-artifact@v6
96 with: 96 with:
97 name: targets-${{ inputs.keymap }} 97 name: targets-${{ inputs.keymap }}
98 path: . 98 path: .
@@ -112,7 +112,7 @@ jobs:
112 qmk mass-compile -t -j $NCPUS -e DUMP_CI_METADATA=yes $(jq -r '.["${{ matrix.target }}"].targets' targets.json) || touch .failed 112 qmk mass-compile -t -j $NCPUS -e DUMP_CI_METADATA=yes $(jq -r '.["${{ matrix.target }}"].targets' targets.json) || touch .failed
113 113
114 - name: Upload binaries 114 - name: Upload binaries
115 uses: actions/upload-artifact@v4 115 uses: actions/upload-artifact@v5
116 with: 116 with:
117 name: firmware-${{ inputs.keymap }}-${{ matrix.target }} 117 name: firmware-${{ inputs.keymap }}-${{ matrix.target }}
118 if-no-files-found: ignore 118 if-no-files-found: ignore
@@ -139,14 +139,14 @@ jobs:
139 uses: actions/checkout@v5 139 uses: actions/checkout@v5
140 140
141 - name: Download firmwares 141 - name: Download firmwares
142 uses: actions/download-artifact@v5 142 uses: actions/download-artifact@v6
143 with: 143 with:
144 pattern: firmware-${{ inputs.keymap }}-* 144 pattern: firmware-${{ inputs.keymap }}-*
145 path: . 145 path: .
146 merge-multiple: true 146 merge-multiple: true
147 147
148 - name: Upload all firmwares 148 - name: Upload all firmwares
149 uses: actions/upload-artifact@v4 149 uses: actions/upload-artifact@v5
150 with: 150 with:
151 name: firmware-${{ inputs.keymap }} 151 name: firmware-${{ inputs.keymap }}
152 if-no-files-found: ignore 152 if-no-files-found: ignore