Skip to content

Commit 416237a

Browse files
dependabot[bot]Ansuel
authored andcommitted
CI: Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6d697f1 commit 416237a

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/multi-arch-test-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
167167
- name: Store packages
168168
if: always()
169-
uses: actions/upload-artifact@v5
169+
uses: actions/upload-artifact@v6
170170
with:
171171
name: ${{env.ARCHIVE_NAME}}-packages
172172
path: |
@@ -179,7 +179,7 @@ jobs:
179179
180180
- name: Store logs
181181
if: always()
182-
uses: actions/upload-artifact@v5
182+
uses: actions/upload-artifact@v6
183183
with:
184184
name: ${{env.ARCHIVE_NAME}}-logs
185185
path: |

.github/workflows/reusable_build-tools.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646

4747
- name: Upload logs
4848
if: always()
49-
uses: actions/upload-artifact@v5
49+
uses: actions/upload-artifact@v6
5050
with:
5151
name: linux-buildbot-logs
5252
path: openwrt/logs
5353

5454
- name: Upload config
5555
if: always()
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
with:
5858
name: linux-buildbot-config
5959
path: openwrt/.config
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Upload prebuilt tools
6868
if: inputs.generate_prebuilt_artifacts == true
69-
uses: actions/upload-artifact@v5
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: linux-buildbot-prebuilt-tools
7272
path: openwrt/tools.tar

.github/workflows/reusable_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ jobs:
262262
263263
- name: Upload fixed Packages
264264
if: failure()
265-
uses: actions/upload-artifact@v5
265+
uses: actions/upload-artifact@v6
266266
with:
267267
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-packages-fixed
268268
path: openwrt/packages-fixed
@@ -733,7 +733,7 @@ jobs:
733733
734734
- name: Upload logs
735735
if: failure()
736-
uses: actions/upload-artifact@v5
736+
uses: actions/upload-artifact@v6
737737
with:
738738
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-logs
739739
path: "openwrt/logs"
@@ -772,7 +772,7 @@ jobs:
772772
- name: Upload ccache cache
773773
if: inputs.use_ccache_cache == true && github.event_name == 'push' &&
774774
inputs.upload_ccache_cache == true
775-
uses: actions/upload-artifact@v5
775+
uses: actions/upload-artifact@v6
776776
with:
777777
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-ccache-cache
778778
path: openwrt/${{ needs.setup_build.outputs.ccache_name }}.tar
@@ -788,7 +788,7 @@ jobs:
788788
789789
- name: Upload prebuilt toolchain
790790
if: inputs.upload_external_toolchain == true
791-
uses: actions/upload-artifact@v5
791+
uses: actions/upload-artifact@v6
792792
with:
793793
name: ${{ inputs.target }}-${{ inputs.subtarget }}-external-toolchain
794794
path: openwrt/bin/targets/${{ inputs.target }}/${{ inputs.subtarget }}/${{ steps.get-toolchain-name.outputs.toolchain-name }}

.github/workflows/reusable_check-kernel-patches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
150150
- name: Upload Refreshed Patches
151151
if: failure()
152-
uses: actions/upload-artifact@v5
152+
uses: actions/upload-artifact@v6
153153
with:
154154
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-refreshed
155155
path: openwrt/${{ inputs.target }}-${{ inputs.subtarget }}-refreshed

.github/workflows/reusable_check-tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: Upload fixed tools
134134
if: failure()
135-
uses: actions/upload-artifact@v5
135+
uses: actions/upload-artifact@v6
136136
with:
137137
name: tools-fixed
138138
path: openwrt/tools-fixed

.github/workflows/tools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565

6666
- name: Upload logs
6767
if: always()
68-
uses: actions/upload-artifact@v5
68+
uses: actions/upload-artifact@v6
6969
with:
7070
name: macos-latest-logs
7171
path: ${{ env.WORKPATH }}/openwrt/logs
7272

7373
- name: Upload config
7474
if: always()
75-
uses: actions/upload-artifact@v5
75+
uses: actions/upload-artifact@v6
7676
with:
7777
name: macos-latest-config
7878
path: ${{ env.WORKPATH }}/openwrt/.config

0 commit comments

Comments
 (0)