Skip to content

Commit d836da4

Browse files
committed
fix(ci): use github hosted runners
1 parent 128be6c commit d836da4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci-pr-title.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
title-lint:
99
name: Validate PR title
10-
runs-on: [default]
10+
runs-on: [ ubuntu-latest ]
1111
steps:
1212
- name: CI Check Title
1313
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
contents: read
1717
uses: cloudoperators/common/.github/workflows/shared-codeql.yaml@main
1818
with:
19-
runs-on: "['default']"
19+
runs-on: "['unbuntu-latest']"
2020
language: "['go']"
2121
go-check: true
2222
go-version: "['1.23']"

.github/workflows/docker-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121
build:
2222
name: Build
23-
runs-on: [ default ]
23+
runs-on: [ ubuntu-latest ]
2424
continue-on-error: true
2525
permissions:
2626
contents: read
@@ -96,7 +96,7 @@ jobs:
9696
fail-fast: false
9797
name: Vulnerability Scan
9898
needs: build
99-
runs-on: [ default ]
99+
runs-on: [ ubuntu-latest ]
100100
steps:
101101
- name: checkout
102102
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
lint:
14-
runs-on: [ default ]
14+
runs-on: [ ubuntu-latest ]
1515
steps:
1616
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
with:
@@ -26,7 +26,7 @@ jobs:
2626
run: make lint
2727

2828
build:
29-
runs-on: [ default ]
29+
runs-on: [ ubuntu-latest ]
3030
steps:
3131
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3232
with:
@@ -38,4 +38,4 @@ jobs:
3838
go-version-file: 'go.mod'
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
- name: build
41-
run: make build
41+
run: make build

0 commit comments

Comments
 (0)