Skip to content

Commit 948098b

Browse files
authored
Merge pull request #165 from adrianchiris/align-os-in-workflows
chore: align OS in workflow
2 parents 0e95ee6 + c587619 commit 948098b

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44
jobs:
55
lint:
66
name: golangci-lint
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88
permissions:
99
contents: read
1010
steps:
@@ -18,7 +18,7 @@ jobs:
1818
run: make lint
1919
test:
2020
name: test
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
permissions:
2323
contents: read
2424
steps:
@@ -34,7 +34,7 @@ jobs:
3434
run: make test-coverage
3535
build:
3636
name: build
37-
runs-on: ubuntu-22.04
37+
runs-on: ubuntu-24.04
3838
permissions:
3939
contents: read
4040
steps:

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
analyze:
1313
name: Analyze
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515
permissions:
1616
actions: read
1717
contents: read

.github/workflows/image-push-master.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build-and-push-amd64-k8s-rdma-shared-dev-plugin:
99
name: image push amd64
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Set repository as lower-case output variable
1313
id: repo_name
@@ -38,7 +38,7 @@ jobs:
3838

3939
build-and-push-arm64-k8s-rdma-shared-dev-plugin:
4040
name: image push arm64
41-
runs-on: ubuntu-22.04
41+
runs-on: ubuntu-24.04
4242
steps:
4343
- name: Set repository as lower-case output variable
4444
id: repo_name
@@ -69,7 +69,7 @@ jobs:
6969

7070
build-and-push-ppc64le-k8s-rdma-shared-dev-plugin:
7171
name: image push ppc64le
72-
runs-on: ubuntu-22.04
72+
runs-on: ubuntu-24.04
7373
steps:
7474
- name: Set repository as lower-case output variable
7575
id: repo_name
@@ -99,7 +99,7 @@ jobs:
9999
file: ./Dockerfile
100100

101101
push-manifest:
102-
runs-on: ubuntu-22.04
102+
runs-on: ubuntu-24.04
103103
needs: [build-and-push-amd64-k8s-rdma-shared-dev-plugin,build-and-push-arm64-k8s-rdma-shared-dev-plugin,build-and-push-ppc64le-k8s-rdma-shared-dev-plugin]
104104
steps:
105105
- name: Set repository as lower-case output variable

.github/workflows/release-ubi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
push_to_registry:
1414
name: Push Docker image to Docker Hub
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Check out the repo
1818
uses: actions/checkout@v4

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build-and-push-amd64:
1515
name: Push amd64 image to ghcr.io
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Set repository as lower-case output variable
1919
id: repo_name
@@ -53,7 +53,7 @@ jobs:
5353

5454
build-and-push-arm64:
5555
name: Push arm64 image to ghcr.io
56-
runs-on: ubuntu-latest
56+
runs-on: ubuntu-24.04
5757
steps:
5858
- name: Set repository as lower-case output variable
5959
id: repo_name
@@ -94,7 +94,7 @@ jobs:
9494

9595
build-and-push-ppc64le:
9696
name: Push ppc64le image to ghcr.io
97-
runs-on: ubuntu-latest
97+
runs-on: ubuntu-24.04
9898
steps:
9999
- name: Set repository as lower-case output variable
100100
id: repo_name
@@ -134,7 +134,7 @@ jobs:
134134
file: ./Dockerfile
135135

136136
push-manifest:
137-
runs-on: ubuntu-22.04
137+
runs-on: ubuntu-24.04
138138
needs: [build-and-push-amd64,build-and-push-arm64,build-and-push-ppc64le]
139139
steps:
140140
- name: Set repository as lower-case output variable

.github/workflows/static-scan.yaml

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
golangci:
55
name: Lint
6-
runs-on: ubuntu-22.04
6+
runs-on: ubuntu-24.04
77
steps:
88
- name: set up Go
99
uses: actions/setup-go@v5
@@ -14,7 +14,7 @@ jobs:
1414
- name: run make lint
1515
run: make lint
1616
hadolint:
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- name: set up Go
2020
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)