Skip to content

Commit c3686d2

Browse files
TEST: use ubuntu 22.04 instead of 24.04
1 parent 0e99677 commit c3686d2

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
matrix:
3636
include:
3737
- name: raspios-bookworm
38-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
38+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
3939
platform: arm64
4040
- name: ubuntu-noble
41-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
41+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
4242
platform: arm64
4343
- name: ubuntu-noble
44-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-24.04' }}
44+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-22.04' }}
4545
platform: amd64
4646
steps:
4747
- name: Checkout source
@@ -98,13 +98,13 @@ jobs:
9898
matrix:
9999
include:
100100
- name: raspios-bookworm
101-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
101+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
102102
platform: arm64
103103
- name: ubuntu-noble
104-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
104+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
105105
platform: arm64
106106
- name: ubuntu-noble
107-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-24.04' }}
107+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-22.04' }}
108108
platform: amd64
109109

110110
steps:
@@ -173,7 +173,7 @@ jobs:
173173

174174
run-static-analysis:
175175
name: Static Code Analysis
176-
runs-on: ubuntu-24.04
176+
runs-on: ubuntu-22.04
177177
container:
178178
image: ghcr.io/${{ inputs.package-namespace }}/builder-ubuntu-noble:${{ inputs.builder-tag }}
179179
options: --user 1001:127

.github/workflows/builder.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ concurrency:
3838
jobs:
3939
builder-necessary:
4040
name: Is builder necessary?
41-
runs-on: ubuntu-24.04
41+
runs-on: ubuntu-22.04
4242
outputs:
4343
build: ${{ steps.changed-files.outputs.all_changed_and_modified_files != '' }}
4444
builder-tag: ${{ steps.builder-tag.outputs.tag }}
@@ -76,7 +76,7 @@ jobs:
7676
if: ${{ needs.builder-necessary.outputs.build == 'true' }}
7777
needs:
7878
- builder-necessary
79-
runs-on: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
79+
runs-on: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
8080

8181
steps:
8282
- name: Checkout the code
@@ -111,9 +111,9 @@ jobs:
111111
matrix:
112112
include:
113113
- platform: amd64
114-
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204' || 'ubuntu-24.04' }}
114+
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204' || 'ubuntu-22.04' }}
115115
- platform: arm64
116-
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
116+
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
117117

118118
steps:
119119
- name: Checkout the code
@@ -144,7 +144,7 @@ jobs:
144144
- builder-necessary
145145
- build-push-ubuntu
146146
name: Docker manifest
147-
runs-on: ubuntu-24.04
147+
runs-on: ubuntu-22.04
148148

149149
steps:
150150
- name: Login to Github Registry

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
check:
2424
name: Formatting
25-
runs-on: ubuntu-24.04
25+
runs-on: ubuntu-22.04
2626
container:
2727
image: ghcr.io/${{ inputs.package-namespace }}/builder-ubuntu-noble:${{ inputs.builder-tag}}
2828
options: --user 1001:127

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
infos:
3939
name: Infos
40-
runs-on: ubuntu-24.04
40+
runs-on: ubuntu-22.04
4141
outputs:
4242
package-namespace: ${{ steps.infos.outputs.namespace }}
4343
steps:
@@ -121,7 +121,7 @@ jobs:
121121

122122
checkpoint-success:
123123
if: ${{ always() }}
124-
runs-on: ubuntu-24.04
124+
runs-on: ubuntu-22.04
125125
needs:
126126
- tests
127127
steps:

.github/workflows/release.yml

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

1212
jobs:
1313
release-artifacts:
14-
runs-on: ubuntu-24.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v4
1717

.github/workflows/test-modules.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
matrix:
4848
include:
4949
- name: raspios-bookworm
50-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
50+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
5151
platform: arm64
5252
- name: ubuntu-noble
53-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
53+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
5454
platform: arm64
5555
- name: ubuntu-noble
56-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-24.04' }}
56+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-22.04' }}
5757
platform: amd64
5858

5959
steps:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
matrix:
3636
include:
3737
- name: raspios-bookworm
38-
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
38+
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
3939
platform: arm64
4040
- name: ubuntu-noble
41-
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-24.04-arm' }}
41+
runner: ${{ github.event.repository.private && 'buildjet-8vcpu-ubuntu-2204-arm' || 'ubuntu-22.04-arm' }}
4242
platform: arm64
4343
- name: ubuntu-noble
44-
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-24.04' }}
44+
runner: ${{ github.event.repository.private && 'buildjet-4vcpu-ubuntu-2204' || 'ubuntu-22.04' }}
4545
platform: amd64
4646

4747
steps:

0 commit comments

Comments
 (0)