diff options
author | Gabriel Nagy <gabriel.nagy@puppet.com> | 2022-01-13 10:30:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 10:30:00 +0200 |
commit | bc16ad7370893d68ca9f922dba4461a53b82e894 (patch) | |
tree | 7c5158cf4a19bfc40f8c0bea70a3386fa005bc6a | |
parent | 593e93faca594c10b4589db22ceb7098946f60e3 (diff) | |
parent | 66478b1c8ca32dbe86f099e6819ebd97c2e62228 (diff) | |
download | puppet-sshkeys_core-bc16ad7370893d68ca9f922dba4461a53b82e894.tar.gz puppet-sshkeys_core-bc16ad7370893d68ca9f922dba4461a53b82e894.tar.bz2 |
Merge pull request #56 from Dorin-Pleava/PUP-11370/github_actions_upgrade_windows
(PUP-11370) Github workflow now uses windows 2019
3 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml index 20ba376..6df3956 100644 --- a/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml @@ -76,7 +76,7 @@ jobs: strategy: matrix: - os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] + os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ] include: - os: 'ubuntu-18.04' os_type: 'Linux' @@ -86,7 +86,7 @@ jobs: os_type: 'macOS' env_set_cmd: 'export ' gem_file_postfix: '-universal-darwin.gem' - - os: 'windows-2016' + - os: 'windows-2019' os_type: 'Windows' env_set_cmd: '$env:' gem_file_postfix: '-x64-mingw32.gem' diff --git a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml index e2122bd..2ea5e91 100644 --- a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml @@ -12,7 +12,7 @@ jobs: name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }} strategy: matrix: - os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] + os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ] puppet_version: [ 6, 7 ] include: - puppet_version: 6 @@ -28,7 +28,7 @@ jobs: os_type: 'macOS' env_set_cmd: 'export ' gem_file: 'puppet-latest-universal-darwin.gem' - - os: 'windows-2016' + - os: 'windows-2019' os_type: 'Windows' env_set_cmd: '$env:' gem_file: 'puppet-latest-x64-mingw32.gem' diff --git a/.github/workflows/unit_tests_with_released_puppet_gem.yaml b/.github/workflows/unit_tests_with_released_puppet_gem.yaml index bd157f3..5ac86dd 100644 --- a/.github/workflows/unit_tests_with_released_puppet_gem.yaml +++ b/.github/workflows/unit_tests_with_released_puppet_gem.yaml @@ -12,7 +12,7 @@ jobs: name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }} strategy: matrix: - os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2016' ] + os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ] puppet_version: [ 6, 7 ] include: - puppet_version: 6 @@ -24,7 +24,7 @@ jobs: os_type: 'Linux' - os: 'macos-10.15' os_type: 'macOS' - - os: 'windows-2016' + - os: 'windows-2019' os_type: 'Windows' runs-on: ${{ matrix.os }} |