Skip to content

Commit 36a826a

Browse files
committed
Use ubuntu-latest
Ubuntu 20.04 was retired 2025-04-15
1 parent b1cf6eb commit 36a826a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/auto_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
jobs:
1010
auto_release:
1111
name: "Automatic release prep"
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
create-github-release:
88
name: Deploy GitHub Release
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout code
1212
uses: actions/checkout@v4
@@ -30,7 +30,7 @@ jobs:
3030

3131
deploy-forge:
3232
name: Deploy to Forge
33-
runs-on: ubuntu-20.04
33+
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout code
3636
uses: actions/checkout@v4

.github/workflows/unit_tests_with_nightly_puppet_gem.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
name: Puppet${{ matrix.puppet_version }} gem on Ruby ${{ matrix.ruby }} on ${{ matrix.os_type }}
99
strategy:
1010
matrix:
11-
os: ['ubuntu-20.04', 'macos-latest', 'windows-2019']
11+
os: ['ubuntu-latest', 'macos-latest', 'windows-2019']
1212
puppet_version: ['7', '8']
1313
include:
1414
- puppet_version: '7'
1515
ruby: '2.7'
1616
- puppet_version: '8'
1717
ruby: '3.1'
1818

19-
- os: 'ubuntu-20.04'
19+
- os: 'ubuntu-latest'
2020
os_type: 'Linux'
2121
env_set_cmd: 'export '
2222
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
@@ -8,15 +8,15 @@ jobs:
88
name: Puppet${{ matrix.puppet_version }} gem on Ruby ${{ matrix.ruby }} on ${{ matrix.os_type }}
99
strategy:
1010
matrix:
11-
os: ['ubuntu-20.04', 'macos-latest', 'windows-2019']
11+
os: ['ubuntu-latest', 'macos-latest', 'windows-2019']
1212
puppet_version: ['7', '8']
1313
include:
1414
- puppet_version: '7'
1515
ruby: '2.7'
1616
- puppet_version: '8'
1717
ruby: '3.1'
1818

19-
- os: 'ubuntu-20.04'
19+
- os: 'ubuntu-latest'
2020
os_type: 'Linux'
2121
- os: 'macos-latest'
2222
os_type: 'macOS'

0 commit comments

Comments
 (0)