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/multi-arch-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Store packages
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{env.ARCHIVE_NAME}}-packages
path: |
Expand All @@ -178,7 +178,7 @@ jobs:

- name: Store logs
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{env.ARCHIVE_NAME}}-logs
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable_build-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: linux-buildbot-logs
path: openwrt/logs

- name: Upload config
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: linux-buildbot-config
path: openwrt/.config
Expand All @@ -66,7 +66,7 @@ jobs:

- name: Upload prebuilt tools
if: inputs.generate_prebuilt_artifacts == true
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: linux-buildbot-prebuilt-tools
path: openwrt/tools.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:

- name: Upload fixed Packages
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-packages-fixed
path: openwrt/packages-fixed
Expand Down Expand Up @@ -733,7 +733,7 @@ jobs:

- name: Upload logs
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-logs
path: "openwrt/logs"
Expand Down Expand Up @@ -772,7 +772,7 @@ jobs:
- name: Upload ccache cache
if: inputs.use_ccache_cache == true && github.event_name == 'push' &&
inputs.upload_ccache_cache == true
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-ccache-cache
path: openwrt/${{ needs.setup_build.outputs.ccache_name }}.tar
Expand All @@ -788,7 +788,7 @@ jobs:

- name: Upload prebuilt toolchain
if: inputs.upload_external_toolchain == true
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}-external-toolchain
path: openwrt/bin/targets/${{ inputs.target }}/${{ inputs.subtarget }}/${{ steps.get-toolchain-name.outputs.toolchain-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_check-kernel-patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

- name: Upload Refreshed Patches
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-refreshed
path: openwrt/${{ inputs.target }}-${{ inputs.subtarget }}-refreshed
2 changes: 1 addition & 1 deletion .github/workflows/reusable_check-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:

- name: Upload fixed tools
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tools-fixed
path: openwrt/tools-fixed
4 changes: 2 additions & 2 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ jobs:

- name: Upload logs
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: macos-latest-logs
path: ${{ env.WORKPATH }}/openwrt/logs

- name: Upload config
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: macos-latest-config
path: ${{ env.WORKPATH }}/openwrt/.config
Expand Down
Loading