summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2022-08-12 14:56:55 +1000
committerDarren Tucker <dtucker@dtucker.net>2022-08-12 14:56:55 +1000
commit5e820bf79ce3ce99ef7e98b0ab642b0a0a4f396c (patch)
treeefeac59ade26be07f97285c69dce9d925fba5c05 /.github
parent87b0d9c1b789d3ff958ec45df2ac912e24461bae (diff)
downloadopenssh-git-5e820bf79ce3ce99ef7e98b0ab642b0a0a4f396c.tar.gz
Replace deprecated ubuntu-18.04 runners with 22.04
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/c-cpp.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index e5e07c2e..e79e3bc9 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
# First we test all OSes in the default configuration.
- os: [ubuntu-20.04, ubuntu-18.04, macos-11, macos-12]
+ os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12]
configs: [default]
# Then we include any extra configs we want to test for specific VMs.
# Valgrind slows things down quite a bit, so start them first.
@@ -67,14 +67,14 @@ jobs:
- { os: ubuntu-latest, configs: openssl-3.0.5 }
- { os: ubuntu-latest, configs: openssl-1.1.1_stable } # stable branch
- { os: ubuntu-latest, configs: openssl-3.0 } # stable branch
- - { os: ubuntu-18.04, configs: pam }
- - { os: ubuntu-18.04, configs: krb5 }
- - { os: ubuntu-18.04, configs: heimdal }
- - { os: ubuntu-18.04, configs: libedit }
- - { os: ubuntu-18.04, configs: sk }
- - { os: ubuntu-18.04, configs: selinux }
- - { os: ubuntu-18.04, configs: kitchensink }
- - { os: ubuntu-18.04, configs: without-openssl }
+ - { os: ubuntu-22.04, configs: pam }
+ - { os: ubuntu-22.04, configs: krb5 }
+ - { os: ubuntu-22.04, configs: heimdal }
+ - { os: ubuntu-22.04, configs: libedit }
+ - { os: ubuntu-22.04, configs: sk }
+ - { os: ubuntu-22.04, configs: selinux }
+ - { os: ubuntu-22.04, configs: kitchensink }
+ - { os: ubuntu-22.04, configs: without-openssl }
- { os: macos-11, configs: pam }
- { os: macos-12, configs: pam }
runs-on: ${{ matrix.os }}