Skip to content

Commit 23adf72

Browse files
committed
(MODULES-11355) Update macOS runners to use more recent macOS version
GitHub announced they are deprecating macOS 10.15 runners for GitHub Actions by 12/1/2022. This PR migrates puppetlabs-sshkeys_core's GitHub Actions off of macOS 10.15.
1 parent 3809961 commit 23adf72

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dispatch_unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ jobs:
7676

7777
strategy:
7878
matrix:
79-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
79+
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ]
8080
include:
8181
- os: 'ubuntu-18.04'
8282
os_type: 'Linux'
8383
env_set_cmd: 'export '
8484
gem_file_postfix: '.gem'
85-
- os: 'macos-10.15'
85+
- os: 'macos-latest'
8686
os_type: 'macOS'
8787
env_set_cmd: 'export '
8888
gem_file_postfix: '-universal-darwin.gem'

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
15+
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ]
1616
puppet_version: [ 6, 7 ]
1717
include:
1818
- puppet_version: 6
@@ -24,7 +24,7 @@ jobs:
2424
os_type: 'Linux'
2525
env_set_cmd: 'export '
2626
gem_file: 'puppet-latest.gem'
27-
- os: 'macos-10.15'
27+
- os: 'macos-latest'
2828
os_type: 'macOS'
2929
env_set_cmd: 'export '
3030
gem_file: 'puppet-latest-universal-darwin.gem'

.github/workflows/unit_tests_with_released_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
os: [ 'ubuntu-18.04', 'macos-10.15', 'windows-2019' ]
15+
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ]
1616
puppet_version: [ 6, 7 ]
1717
include:
1818
- puppet_version: 6
@@ -22,7 +22,7 @@ jobs:
2222

2323
- os: 'ubuntu-18.04'
2424
os_type: 'Linux'
25-
- os: 'macos-10.15'
25+
- os: 'macos-latest'
2626
os_type: 'macOS'
2727
- os: 'windows-2019'
2828
os_type: 'Windows'

0 commit comments

Comments
 (0)