Skip to content

Commit 488f5a6

Browse files
authored
chore: use ubuntu-latest instead of large_runner runner (#1989)
<!-- markdownlint-disable MD041 --> #### What this PR does / why we need it Use `ubuntu-latest` instead of `large_runner` --------- Signed-off-by: Frederic Wilhelm <frederic.wilhelm@sap.com>
1 parent 9bb35e9 commit 488f5a6

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/check_diff_action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
diff-check-manifests:
1414
name: Check for diff
15-
runs-on: large_runner
15+
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# - https://gh.io/using-larger-runners (GitHub.com only)
3030
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
3131
# - ADDENDUM: We moved this to a larger runner for faster analysis
32-
runs-on: large_runner
32+
runs-on: ubuntu-latest
3333
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
3434
permissions:
3535
# required for all workflows
@@ -114,7 +114,7 @@ jobs:
114114

115115
- name: Build
116116
if: matrix.build-mode == 'manual'
117-
run: make build -j
117+
run: make build
118118

119119
- name: Perform CodeQL Analysis
120120
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0

.github/workflows/components.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
strategy:
5757
matrix:
5858
component: ${{fromJSON(needs.define-matrix.outputs.components)}}
59-
runs-on: large_runner
59+
runs-on: ubuntu-latest
6060
steps:
6161
- name: Self Hosted Runner Post Job Cleanup Action
6262
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563 # v2.2
@@ -122,7 +122,7 @@ jobs:
122122

123123
aggregate:
124124
name: "Aggregate"
125-
runs-on: large_runner
125+
runs-on: ubuntu-latest
126126
needs: [build, define-matrix]
127127
env:
128128
components: ${{ join(fromJSON(needs.define-matrix.outputs.components), ' ') }}

.github/workflows/lint_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
test:
1616
name: Run tests
17-
runs-on: large_runner
17+
runs-on: ubuntu-latest
1818
steps:
1919
- name: Self Hosted Runner Post Job Cleanup Action
2020
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563 # v2.2
@@ -73,7 +73,7 @@ jobs:
7373

7474
go-lint:
7575
name: Lint Golang
76-
runs-on: large_runner
76+
runs-on: ubuntu-latest
7777
steps:
7878
- name: Self Hosted Runner Post Job Cleanup Action
7979
uses: TooMuch4U/actions-clean@9b358e33df99574ac0bdf2e92fa3db1ae1415563 # v2.2

.github/workflows/publish-latest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
ocm-cli-latest:
7676
name: Build latest ocm-cli
77-
runs-on: large_runner
77+
runs-on: ubuntu-latest
7878
environment:
7979
name: release
8080
deployment: false

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- release-version
106106
- components
107107
name: Release Build
108-
runs-on: large_runner
108+
runs-on: ubuntu-latest
109109
environment:
110110
name: release
111111
deployment: false

0 commit comments

Comments
 (0)