Skip to content

Commit d051ed7

Browse files
ttaylorrgitster
authored andcommittedFeb 8, 2021
.github/workflows/main.yml: run static-analysis on bionic
GitHub Actions is transitioning workflow steps that run on 'ubuntu-latest' from 18.04 to 20.04 [1]. This works fine in all steps except the static-analysis one, since Coccinelle isn't available on Ubuntu focal (it is only available in the universe suite). Until Coccinelle can be installed from 20.04's main suite, pin the static-analysis build to run on 18.04, where it can be installed by default. [1]: actions/runner-images#1816 Reported-by: Junio C Hamano <[email protected]> Signed-off-by: Taylor Blau <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d592233 commit d051ed7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ jobs:
336336
if: needs.ci-config.outputs.enabled == 'yes'
337337
env:
338338
jobname: StaticAnalysis
339-
runs-on: ubuntu-latest
339+
runs-on: ubuntu-18.04
340340
steps:
341341
- uses: actions/checkout@v1
342342
- run: ci/install-dependencies.sh

0 commit comments

Comments
 (0)
Please sign in to comment.