Skip to content

Commit 249644e

Browse files
committed
(MODULES-11367) Update Ubuntu GitHub Action runner
GitHub is deprecating Ubuntu 18.04 runners on April 1, 2023. This commit switches all Ubuntu 18.04 runners used in GitHub Actions to Ubuntu 20.04.
1 parent 15928d2 commit 249644e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/daily_unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1111
strategy:
1212
matrix:
13-
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ]
13+
os: [ 'ubuntu-20.04', 'macos-latest', 'windows-2019' ]
1414
puppet_version: [ 6, 7 ]
1515
include:
1616
- puppet_version: 6
1717
ruby: 2.5
1818
- puppet_version: 7
1919
ruby: 2.7
2020

21-
- os: 'ubuntu-18.04'
21+
- os: 'ubuntu-20.04'
2222
os_type: 'Linux'
2323
env_set_cmd: 'export '
2424
gem_file: 'puppet-latest.gem'

.github/workflows/static_code_analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
ruby_version: 2.6
1616
extra_checks: check:symlinks check:git_ignore check:dot_underscore check:test_file
1717

18-
runs-on: 'ubuntu-18.04'
18+
runs-on: 'ubuntu-20.04'
1919
steps:
2020
- name: Checkout current PR code
2121
uses: actions/checkout@v2

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

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

23-
- os: 'ubuntu-18.04'
23+
- os: 'ubuntu-20.04'
2424
os_type: 'Linux'
2525
env_set_cmd: 'export '
2626
gem_file: 'puppet-latest.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,15 +12,15 @@ jobs:
1212
name: ${{ matrix.os_type }} / Puppet${{ matrix.puppet_version }} gem / Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
os: [ 'ubuntu-18.04', 'macos-latest', 'windows-2019' ]
15+
os: [ 'ubuntu-20.04', 'macos-latest', 'windows-2019' ]
1616
puppet_version: [ 6, 7 ]
1717
include:
1818
- puppet_version: 6
1919
ruby: 2.5
2020
- puppet_version: 7
2121
ruby: 2.7
2222

23-
- os: 'ubuntu-18.04'
23+
- os: 'ubuntu-20.04'
2424
os_type: 'Linux'
2525
- os: 'macos-latest'
2626
os_type: 'macOS'

0 commit comments

Comments
 (0)