Skip to content

Commit a8c9b9e

Browse files
authored
Merge pull request #167 from RainbowMango/pr_pin_github_runner_to_ubuntu-22.04
pin github action runner to ubuntu-22.04 not the latest
2 parents ad941b7 + 63c02a8 commit a8c9b9e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
2525
analyze:
2626
name: Analyze
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-22.04
2828
permissions:
2929
actions: read
3030
contents: read

.github/workflows/push-image.yml

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

99
jobs:
1010
build-fronted:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4
@@ -34,7 +34,7 @@ jobs:
3434

3535
build-and-push-web:
3636
if: ${{ github.repository == 'karmada-io/dashboard' }}
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-22.04
3838
needs: [ "build-fronted" ]
3939
env:
4040
IMAGE_NAME: karmada/karmada-dashboard-web
@@ -88,7 +88,7 @@ jobs:
8888
8989
build-and-push-api:
9090
if: ${{ github.repository == 'karmada-io/dashboard' }}
91-
runs-on: ubuntu-latest
91+
runs-on: ubuntu-22.04
9292
env:
9393
IMAGE_NAME: karmada/karmada-dashboard-api
9494
BINARY_NAME: karmada-dashboard-api

0 commit comments

Comments
 (0)