diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-09-13 12:21:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-09-13 12:21:10 -0700 |
commit | 4f06dfde7aa55a444600c804559b44bf9bf764d2 (patch) | |
tree | 9aee7569bf0b7d1d28c992dc69f61d90b2b09674 | |
parent | 37317ab40b9fd2458ce48fe10e34bb9d478224a9 (diff) | |
parent | ef46584831268a83591412a33783caf866867482 (diff) |
Merge branch 'ds/github-actions-use-newer-ubuntu' into maint
Update the version of Ubuntu used for GitHub Actions CI from 18.04
to 22.04.
* ds/github-actions-use-newer-ubuntu:
ci: update 'static-analysis' to Ubuntu 22.04
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd1f52692a..831f4df56c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -309,7 +309,7 @@ jobs: if: needs.ci-config.outputs.enabled == 'yes' env: jobname: StaticAnalysis - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - run: ci/install-dependencies.sh |