We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb6094 commit 3ad5240Copy full SHA for 3ad5240
.github/workflows/kernel-build.yml
@@ -70,6 +70,19 @@ jobs:
70
RUNNER_TYPE: ${{ contains(fromJSON(inputs.runs_on), 'codebuild') && 'codebuild' || 'default' }}
71
steps:
72
73
+ # git version 2.43.0 (current Ubuntu 24 installation)
74
+ # does not support git clone --revision option
75
+ # so make sure latest git is installed
76
+ - name: Install latest git
77
+ shell: bash
78
+ run: |
79
+ sudo apt-get update
80
+ sudo apt-get install -y software-properties-common
81
+ sudo add-apt-repository -y ppa:git-core/ppa
82
83
+ sudo apt-get install -y git
84
+ git --version
85
+
86
- uses: actions/checkout@v4
87
with:
88
sparse-checkout: |
0 commit comments