Skip to content

Commit c633c0d

Browse files
committed
Use stable runs on
Signed-off-by: Yuki Iwai <[email protected]>
1 parent 599bbfd commit c633c0d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
jobs:
2121
CodeQL-Build:
2222
# CodeQL runs on ubuntu-latest, windows-latest, and macos-latest
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-22.04
2424

2525
permissions:
2626
# required for all workflows

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
golangci:
1111
name: lint
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-go@v3

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, pull_request]
33
jobs:
44
validate:
55
name: Validate
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-22.04
77
env:
88
GOPATH: ${{ github.workspace }}/go
99
defaults:
@@ -32,7 +32,7 @@ jobs:
3232
run: make test
3333
e2e:
3434
name: E2E
35-
runs-on: ubuntu-latest
35+
runs-on: ubuntu-22.04
3636
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
3737
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
3838
strategy:

.github/workflows/mpi-operator-docker-image-publish.yml

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

1616
jobs:
1717
build-push-docker-image:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v3

0 commit comments

Comments
 (0)