Skip to content
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/issue-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
check-type:
name: Parse Issue type
runs-on: ubuntu-latest
runs-on: ubuntu-slim

outputs:
issue_type: ${{ steps.parse_labels.outputs.type }}
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
name: Validate and Tag Bug Report
needs: check-type
if: needs.check-type.outputs.issue_type == 'bug-report'
runs-on: ubuntu-latest
runs-on: ubuntu-slim

permissions:
issues: write
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
remove-labels:
name: Remove Issue Labels
needs: [ check-type, triage-bug-report ]
runs-on: ubuntu-latest
runs-on: ubuntu-slim

permissions:
issues: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
determine_targets:
name: Set targets
needs: determine_changed_files
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
targets_subtargets: ${{ steps.find_targets.outputs.targets_subtargets }}
targets: ${{ steps.find_targets.outputs.targets }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
set_target:
if: startsWith(github.event.label.name, 'ci:kernel:')
name: Set target
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
targets_subtargets: ${{ steps.set_target.outputs.targets_subtargets }}
targets: ${{ steps.set_target.outputs.targets }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
set_target:
if: startsWith(github.event.label.name, 'ci:target:')
name: Set target
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
target: ${{ steps.set_target.outputs.target }}
subtarget: ${{ steps.set_target.outputs.subtarget }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
determine-container-info:
name: Determine needed info to push containers
if: ${{ github.repository_owner == 'openwrt' }}
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
owner-lc: ${{ steps.generate-owner-lc.outputs.owner-lc }}
container-tag: ${{ steps.determine-container-tag.outputs.container-tag }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
determine-targets:
name: Set targets
if: ${{ github.repository_owner == 'openwrt' }}
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
target: ${{ steps.find_targets.outputs.target }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ permissions:
jobs:
setup_build:
name: Set up build ${{ inputs.target }}/${{ inputs.subtarget }}
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
container: ${{ steps.determine_container.outputs.container }}
ccache_tag: ${{ steps.determine_ccache_tag.outputs.ccache_tag }}
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 @@ -21,7 +21,7 @@ permissions:
jobs:
setup_build:
name: Set up build
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
owner_lc: ${{ steps.lower_owner.outputs.owner_lc }}
container_tag: ${{ steps.determine_tools_container.outputs.container_tag }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_check-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
determine-container-info:
name: Determine needed info to push containers
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
owner-lc: ${{ steps.generate-owner-lc.outputs.owner-lc }}
container-tag: ${{ steps.determine-container-tag.outputs.container-tag }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_determine_changed_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
determine_changed_files:
name: Determine Changed Files
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_determine_changed_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
determine_changed_packages:
name: Determine Changed Packages
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
changed_packages: ${{ steps.get_packages.outputs.changed_packages }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
determine_targets:
name: Set targets
runs-on: ubuntu-latest
runs-on: ubuntu-slim
outputs:
target: ${{ steps.find_targets.outputs.target }}

Expand Down