Skip to content

Commit 2b48ee0

Browse files
authored
fix(ci): use github hosted runners (#1229)
1 parent 1a8f909 commit 2b48ee0

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
permissions:
1919
packages: write
2020
contents: read
21-
runs-on: [ default ]
21+
runs-on: [ ubuntu-latest ]
2222
if: contains(github.event.pull_request.labels.*.name,'pr-build-chart')
2323
strategy:
2424
fail-fast: false
@@ -103,7 +103,7 @@ jobs:
103103
permissions:
104104
packages: write
105105
if: contains(github.event.pull_request.labels.*.name,'cleanup-pr-chart') || github.event_name.types == 'closed'
106-
runs-on: [ default ]
106+
runs-on: [ ubuntu-latest ]
107107
steps:
108108
- name: Delete PR container image tag
109109
uses: dataaxiom/ghcr-cleanup-action@cd0cdb900b5dbf3a6f2cc869f0dbb0b8211f50c4 # v1

.github/workflows/docker-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
build:
1818
name: Build
19-
runs-on: [ default ]
19+
runs-on: [ ubuntu-latest ]
2020
continue-on-error: true
2121
strategy:
2222
fail-fast: false
@@ -140,7 +140,7 @@ jobs:
140140

141141
name: Vulnerability Scan
142142
needs: build
143-
runs-on: [ default ]
143+
runs-on: [ ubuntu-latest ]
144144
steps:
145145
- name: Run Trivy vulnerability scanner
146146
uses: aquasecurity/trivy-action@master

.github/workflows/e2e-flux-helm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
e2e-flux-helm:
25-
runs-on: [default]
25+
runs-on: [ ubuntu-latest ]
2626
steps:
2727
- name: Set up Helm
2828
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1

.github/workflows/helm-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
helm-docs-check:
16-
runs-on: [default]
16+
runs-on: [ ubuntu-latest ]
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5

.github/workflows/helm-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ env:
3535

3636
jobs:
3737
helm-release:
38-
runs-on: [ default ]
38+
runs-on: [ ubuntu-latest ]
3939
strategy:
4040
fail-fast: false
4141
matrix:

.github/workflows/license.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
generate-token:
88
name: Generate GitHub App Token
9-
runs-on: default
9+
runs-on: [ ubuntu-latest ]
1010
outputs:
1111
token: ${{ steps.github-app-token.outputs.token }}
1212
steps:

.github/workflows/trigger_hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
trigger:
13-
runs-on: [ default ]
13+
runs-on: [ ubuntu-latest ]
1414

1515
steps:
1616
- name: Generate GitHub App Token

0 commit comments

Comments
 (0)