Skip to content

Commit 395c446

Browse files
d-e-s-odanielocfb
authored andcommitted
Use pinned Linux version
We really shouldn't be using the moving target that is "the latest" Linux kernel version: just changing a config flag would introduce a bunch of completely unrelated changes, including potentially wrecking a config if certain high profile options were to be renamed. Fixate the Linux kernel version so that we have full control over what we use. Stick to 6.18, which is what commit 991dd4b ("Update vmlinux.h headers from Linux 6.14 to 6.18") bumped us to. Signed-off-by: Daniel Müller <deso@posteo.net>
1 parent 991dd4b commit 395c446

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

.github/workflows/vmlinux.h.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,13 @@ jobs:
1616

1717
- uses: actions/checkout@v4
1818

19-
- name: Download Linux source
20-
shell: bash
21-
run: ./scripts/download-latest-linux-release.sh
19+
- name: Check out Linux source
20+
uses: actions/checkout@v6
21+
with:
22+
repository: 'torvalds/linux'
23+
ref: 'v6.18'
24+
fetch-depth: 1
25+
path: linux/
2226

2327
- name: Install dependencies
2428
shell: bash

scripts/download-latest-linux-release.sh

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)