diff options
author | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-02-18 15:56:23 +0200 |
---|---|---|
committer | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-02-18 16:21:05 +0200 |
commit | 9abad90fba416f908cfc506474f5ffd1a35b30a9 (patch) | |
tree | be64d6113c2aebcd0e247a8871bd9a1f4993e28c | |
parent | ac198dc8a3b921ad3bb225038f05640249e4ebd4 (diff) | |
download | puppet-sshkeys_core-9abad90fba416f908cfc506474f5ffd1a35b30a9.tar.gz puppet-sshkeys_core-9abad90fba416f908cfc506474f5ffd1a35b30a9.tar.bz2 |
(maint) Add puppet7 and remove puppet5 from PR testing
Update the workflow that tests with released Puppet gems to also test
with Puppet 7.
Remove testing with Puppet 5 from the workflows since it reached EOL.
3 files changed, 5 insertions, 9 deletions
diff --git a/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml index 34c169d..d027aa4 100644 --- a/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml @@ -11,10 +11,8 @@ jobs: strategy: matrix: os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] - puppet_version: [ 5, 6, 7 ] + puppet_version: [ 6, 7 ] include: - - puppet_version: 5 - ruby: 2.4 - puppet_version: 6 ruby: 2.5 - puppet_version: 7 diff --git a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml index 8fad5ef..e2122bd 100644 --- a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml @@ -13,10 +13,8 @@ jobs: strategy: matrix: os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] - puppet_version: [ 5, 6, 7 ] + puppet_version: [ 6, 7 ] include: - - puppet_version: 5 - ruby: 2.4 - puppet_version: 6 ruby: 2.5 - puppet_version: 7 diff --git a/.github/workflows/unit_tests_with_released_puppet_gem.yaml b/.github/workflows/unit_tests_with_released_puppet_gem.yaml index 61b7b4c..bd157f3 100644 --- a/.github/workflows/unit_tests_with_released_puppet_gem.yaml +++ b/.github/workflows/unit_tests_with_released_puppet_gem.yaml @@ -13,12 +13,12 @@ jobs: strategy: matrix: os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] - puppet_version: [ 5, 6 ] + puppet_version: [ 6, 7 ] include: - - puppet_version: 5 - ruby: 2.4 - puppet_version: 6 ruby: 2.5 + - puppet_version: 7 + ruby: 2.7 - os: 'ubuntu-18.04' os_type: 'Linux' |