Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(): migrate all github actions to self-hosted runners #1324

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/approve-test-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
approve-test-run:
permissions:
pull-requests: write
runs-on: ubuntu-latest
runs-on: tools-runner-small
if: ${{ github.event.issue.pull_request }}
steps:
- name: Slash Command Dispatch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/greeting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
permissions:
pull-requests: write
name: Greeting comment upon PR from fork
runs-on: ubuntu-latest
runs-on: tools-runner-small
if: github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != 'sysdiglabs/charts'

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: pull_request

jobs:
Unit-tests:
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k8s-apis-deprecation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: workflow_dispatch
jobs:

charts:
runs-on: ubuntu-latest
runs-on: tools-runner-small
# Parallel builds
strategy:
# Don't stop the pipeline in case one of parallel jobs fails
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- uses: actions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
lint-test-branch:
runs-on: ubuntu-latest
runs-on: tools-runner-large
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: Checkout
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:


lint-test-fork:
runs-on: ubuntu-latest
runs-on: tools-runner-large
permissions:
checks: write
if: github.event_name == 'repository_dispatch' &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
pr-lint:
permissions:
pull-requests: write
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- uses: morrisoncole/[email protected]
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
charts-to-release:
runs-on: ubuntu-latest
runs-on: tools-runner-small
outputs:
modified-charts-files: ${{ steps.updated-charts.outputs.all_modified_files }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
generate-changelog:
needs: charts-to-release
if: needs.charts-to-release.outputs.modified-charts-files
runs-on: ubuntu-latest
runs-on: tools-runner-small
container: quay.io/sysdig/git-chglog:0.15.1-3-g6e4e27d
steps:
- name: Checkout
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
release-charts:
needs:
- generate-changelog
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
needs:
- charts-to-release
- release-charts
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- uses: actions/stale@v8
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
dispatch:
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: filter release tag
id: filter_tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-sysdig-deploy-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
jobs:
update-sysdig-deploy-version:
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: Git checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-tanzu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
publish-chart:
runs-on: ubuntu-latest
runs-on: tools-runner-small
steps:
- name: Get name from tag
id: tag_name
Expand Down
Loading