diff options
author | Christopher Thorn <christopher.thorn@puppet.com> | 2022-10-13 15:31:56 -0700 |
---|---|---|
committer | Christopher Thorn <christopher.thorn@puppet.com> | 2022-10-13 15:31:56 -0700 |
commit | 76e710a94692ecc0c1881c7d7814e84e63ff69db (patch) | |
tree | 43980f6aabf4acb2c672fe4ebc5a51dd8223b6f8 | |
parent | 709c1d7dacef195d0f7f66dae38bc53420b102ef (diff) | |
download | puppet-augeas_core-76e710a94692ecc0c1881c7d7814e84e63ff69db.tar.gz puppet-augeas_core-76e710a94692ecc0c1881c7d7814e84e63ff69db.tar.bz2 |
(MODULES-11352) Update the macos action runner to use latest
-rw-r--r-- | .github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/puppet-latest.gem | bin | 0 -> 2772480 bytes | |||
-rw-r--r-- | .github/workflows/unit_tests_with_nightly_puppet_gem.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/unit_tests_with_released_puppet_gem.yaml | 4 |
4 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 5d017a1..fed0724 100644 --- a/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml +++ b/.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml @@ -72,13 +72,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/puppet-latest.gem b/.github/workflows/puppet-latest.gem Binary files differnew file mode 100644 index 0000000..447f424 --- /dev/null +++ b/.github/workflows/puppet-latest.gem diff --git a/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml b/.github/workflows/unit_tests_with_nightly_puppet_gem.yaml index 85c367b..88604d0 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' |