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
4 changes: 2 additions & 2 deletions .github/workflows/build-pr-profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
echo "build_success=true" >> $GITHUB_OUTPUT

- name: Upload log
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: steps.parse-command.outputs.build_requested == 'true' && (success() || failure())
with:
name: build-log-${{ steps.parse-command.outputs.target }}-${{ steps.parse-command.outputs.subtarget }}-${{ steps.parse-command.outputs.profile }}
Expand All @@ -106,7 +106,7 @@ jobs:

- name: Upload build artifacts
if: steps.build.outputs.build_success == 'true'
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-${{ steps.parse-command.outputs.target }}-${{ steps.parse-command.outputs.subtarget }}-${{ steps.parse-command.outputs.profile }}
path: build-artifacts.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Process GitHub formality check results
if: always() && inputs.post_comment == true
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
JOB_ID: ${{ job.check_run_id }}
SUMMARY: ${{ steps.formalities.outputs.content }}
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/issue-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:

- name: Post Invalid Version
if: steps.check_version.outputs.invalid_version == 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/comments
body: ${{ toJSON(env.REQUEST_BODY) }}
Expand All @@ -158,7 +158,7 @@ jobs:

- name: Post Invalid Release
if: steps.check_release.outputs.invalid_release == 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/comments
body: ${{ toJSON(env.REQUEST_BODY) }}
Expand All @@ -172,7 +172,7 @@ jobs:

- name: Post Invalid Target/Subtarget
if: steps.check_target.outputs.invalid_target == 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/comments
body: ${{ toJSON(env.REQUEST_BODY) }}
Expand All @@ -188,7 +188,7 @@ jobs:
# and model name set in image.mk
# - name: Post Invalid Model
# if: steps.check_device.outputs.invalid_device == 'true'
# uses: octokit/request-action@v2.x
# uses: octokit/request-action@v3
# with:
# route: POST /repos/{repository}/issues/{issue_number}/comments
# body: ${{ toJSON(env.REQUEST_BODY) }}
Expand All @@ -202,7 +202,7 @@ jobs:

- name: Add Release tag
if: steps.check_version.outputs.invalid_version != 'true' && steps.check_release.outputs.invalid_release != 'true' && steps.check_target.outputs.invalid_target != 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/labels
labels: ${{ env.REQUEST_BODY }}
Expand All @@ -215,7 +215,7 @@ jobs:

- name: Add Target/Subtarget tag
if: steps.check_version.outputs.invalid_version != 'true' && steps.check_release.outputs.invalid_release != 'true' && steps.check_target.outputs.invalid_target != 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/labels
labels: ${{ env.REQUEST_BODY }}
Expand All @@ -228,7 +228,7 @@ jobs:

- name: Add tag Image Kind
if: steps.check_version.outputs.invalid_version != 'true' && steps.check_release.outputs.invalid_release != 'true' && steps.check_target.outputs.invalid_target != 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/labels
labels: ${{ env.REQUEST_BODY }}
Expand All @@ -241,7 +241,7 @@ jobs:

- name: Add tag Supported Device
if: steps.check_version.outputs.invalid_version != 'true' && steps.check_release.outputs.invalid_release != 'true' && steps.check_target.outputs.invalid_target != 'true' && steps.check_device.outputs.invalid_device != 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/labels
labels: ${{ env.REQUEST_BODY }}
Expand All @@ -254,7 +254,7 @@ jobs:

- name: Add Invalid Tag
if: steps.check_version.outputs.invalid_version == 'true' || steps.check_release.outputs.invalid_release == 'true' || steps.check_target.outputs.invalid_target == 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: POST /repos/{repository}/issues/{issue_number}/labels
labels: ${{ env.REQUEST_BODY }}
Expand All @@ -275,7 +275,7 @@ jobs:

steps:
- name: Remove tag to-triage
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: DELETE /repos/{repository}/issues/{issue_number}/labels/{issue_label}
env:
Expand All @@ -285,7 +285,7 @@ jobs:
INPUT_ISSUE_LABEL: to-triage

- name: Remove tag issue type
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: DELETE /repos/{repository}/issues/{issue_number}/labels/{issue_label}
env:
Expand Down
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@v6
uses: actions/upload-artifact@v7
with:
name: ${{env.ARCHIVE_NAME}}-packages
path: |
Expand All @@ -178,7 +178,7 @@ jobs:

- name: Store logs
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{env.ARCHIVE_NAME}}-logs
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,22 +72,22 @@ jobs:
sparse-checkout-cone-mode: false

- name: Download prebuilt tools from build job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: linux-buildbot-prebuilt-tools

- name: Extract prebuild tools
run: tar -xf tools.tar

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
sparse-checkout-cone-mode: false

- name: Download external toolchain from build job
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ matrix.target }}-${{ matrix.subtarget }}-external-toolchain

Expand All @@ -182,14 +182,14 @@ jobs:
echo "toolchain-name=$TOOLCHAIN_NAME" >> $GITHUB_OUTPUT

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: true
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@v6
uses: actions/upload-artifact@v7
with:
name: linux-buildbot-logs
path: openwrt/logs

- name: Upload config
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
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@v6
uses: actions/upload-artifact@v7
with:
name: linux-buildbot-prebuilt-tools
path: openwrt/tools.tar
Expand Down
10 changes: 5 additions & 5 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@v6
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-packages-fixed
path: openwrt/packages-fixed
Expand Down Expand Up @@ -756,7 +756,7 @@ jobs:

- name: Upload logs
if: failure()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-logs
path: "openwrt/logs"
Expand All @@ -769,7 +769,7 @@ jobs:
- name: Delete already present ccache cache
if: steps.restore-ccache-cache.outputs.cache-hit == 'true' && inputs.use_ccache_cache == true &&
github.event_name == 'push' && steps.restore-ccache-cache-s3.outputs.cache-hit != 'true'
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3
with:
route: DELETE /repos/{repository}/actions/caches?key={key}
env:
Expand All @@ -795,7 +795,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@v6
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-ccache-cache
path: openwrt/${{ needs.setup_build.outputs.ccache_name }}.tar
Expand All @@ -811,7 +811,7 @@ jobs:

- name: Upload prebuilt toolchain
if: inputs.upload_external_toolchain == true
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
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@v6
uses: actions/upload-artifact@v7
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@v6
uses: actions/upload-artifact@v7
with:
name: tools-fixed
path: openwrt/tools-fixed
2 changes: 1 addition & 1 deletion .github/workflows/reusable_upload-file-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: mc alias set s3 ${{ secrets.s3_endpoint }} ${{ secrets.s3_access_key }} ${{ secrets.s3_secret_key }}

- name: Download file
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ inputs.download_id }}

Expand Down
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@v6
uses: actions/upload-artifact@v7
with:
name: macos-latest-logs
path: ${{ env.WORKPATH }}/openwrt/logs

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