Skip to content

Commit e441088

Browse files
authored
Merge pull request #148 from linuxserver-labs/v8-test
Fix gcc segfaults on gh runners
2 parents 18427f3 + e2eead9 commit e441088

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
bake:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
if: ${{ github.actor != 'dependabot[bot]' }}
3232
steps:
3333
-

.github/workflows/build-split-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
bake:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
if: ${{ github.actor != 'dependabot[bot]' }}
3232
strategy:
3333
matrix:
@@ -134,7 +134,7 @@ jobs:
134134
echo "meta-${{ matrix.arch }}=${{ fromJSON(steps.docker_meta.outputs.json).tags[0] }}" >> $GITHUB_OUTPUT
135135
136136
manifest:
137-
runs-on: ubuntu-latest
137+
runs-on: ubuntu-22.04
138138
if: ${{ github.actor != 'dependabot[bot]' }}
139139
needs: bake
140140
strategy:

.github/workflows/check-and-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131

3232
jobs:
3333
check:
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-22.04
3535
outputs:
3636
image_release: ${{ steps.build_check.outputs.image_release }}
3737
ls_version: ${{ steps.build_check.outputs.ls_version }}
@@ -172,7 +172,7 @@ jobs:
172172
fi
173173
174174
release:
175-
runs-on: ubuntu-latest
175+
runs-on: ubuntu-22.04
176176
needs: check
177177
if: ${{ needs.check.outputs.update_available == 'true' }}
178178
steps:

.github/workflows/check-baseimage-update.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on:
2828

2929
jobs:
3030
get-baseimage-version:
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-22.04
3232
outputs:
3333
modified: ${{ steps.git-check.outputs.modified }}
3434
steps:
@@ -53,7 +53,7 @@ jobs:
5353
fi
5454
5555
release:
56-
runs-on: ubuntu-latest
56+
runs-on: ubuntu-22.04
5757
needs: get-baseimage-version
5858
if: ${{ needs.get-baseimage-version.outputs.modified == 'true' }}
5959
steps:

0 commit comments

Comments
 (0)