diff options
author | cthorn42 <christopher.thorn@puppet.com> | 2022-10-17 13:46:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 13:46:36 -0700 |
commit | 05b3bc16113be081663f527f938f7d1d16f5154d (patch) | |
tree | 095674ee512c2b690036ef3871cc044c85484b08 | |
parent | 024fcf469163699965785fffcb5d85a517db1320 (diff) | |
parent | 23adf72dc05f6aa3a9f6df71dbea987e01d72935 (diff) | |
download | puppet-sshkeys_core-05b3bc16113be081663f527f938f7d1d16f5154d.tar.gz puppet-sshkeys_core-05b3bc16113be081663f527f938f7d1d16f5154d.tar.bz2 |
Merge pull request #66 from AriaXLi/modules-11355_update_macos_runners
(MODULES-11355) Update macOS runners to use more recent macOS version
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 ddcc3ed..9a78fc8 100644 --- a/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml @@ -76,13 +76,13 @@ jobs: strategy: matrix: - os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ] + os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ] include: - os: 'ubuntu-18.04' os_type: 'Linux' env_set_cmd: 'export ' gem_file_postfix: '.gem' - - os: 'macos-10.15' + - os: 'macos-latest' os_type: 'macOS' env_set_cmd: 'export ' gem_file_postfix: '-universal-darwin.gem' diff --git a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml index 206e1de..9f8e57a 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-2019' ] + os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ] puppet_version: [ 6, 7 ] include: - puppet_version: 6 @@ -24,7 +24,7 @@ jobs: os_type: 'Linux' env_set_cmd: 'export ' gem_file: 'puppet-latest.gem' - - os: 'macos-10.15' + - os: 'macos-latest' os_type: 'macOS' env_set_cmd: 'export ' gem_file: 'puppet-latest-universal-darwin.gem' diff --git a/.github/workflows/unit_tests_with_released_puppet_gem.yaml b/.github/workflows/unit_tests_with_released_puppet_gem.yaml index 5ac86dd..c316cb0 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-2019' ] + os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ] puppet_version: [ 6, 7 ] include: - puppet_version: 6 @@ -22,7 +22,7 @@ jobs: - os: 'ubuntu-18.04' os_type: 'Linux' - - os: 'macos-10.15' + - os: 'macos-latest' os_type: 'macOS' - os: 'windows-2019' os_type: 'Windows' |