Skip to content

Commit 585d812

Browse files
Merge pull request #133 from puppetlabs/CAT-2286-Remove_puppet_7_test_infrastructure
(CAT-2286) Remove puppet 7 infrastructure
2 parents 03d8a7d + 8e6480a commit 585d812

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/gem_acceptance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
puppet_version:
1313
description: "The target Puppet version."
1414
required: false
15-
default: "puppet7-nightly"
15+
default: "puppet8-nightly"
1616
type: "string"
1717
rake_task:
1818
description: "The name of the rake task that executes acceptance tests"

.github/workflows/gem_ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
puppet_gem_version:
1313
description: "Specifies the version of the Puppet gem to be installed"
1414
required: false
15-
default: "~> 7.0"
15+
default: "~> 8.0"
1616
type: "string"
1717
rake_task:
1818
description: "The name of the rake task that executes tests"
@@ -53,7 +53,7 @@ jobs:
5353
uses: reviewdog/action-shellcheck@v1
5454
if: |
5555
inputs.run_shellcheck &&
56-
inputs.ruby_version == '3.2' &&
56+
inputs.ruby_version == ${{ inputs.ruby_version.default }} &&
5757
inputs.runs_on == 'ubuntu-latest'
5858
with:
5959
check_all_files_with_shebangs: "true"
@@ -89,7 +89,7 @@ jobs:
8989
if: |
9090
contains(inputs.rake_task, 'coverage') &&
9191
inputs.runs_on == 'ubuntu-latest' &&
92-
inputs.ruby_version == '3.2' &&
92+
inputs.ruby_version == '3.1' &&
9393
env.CODECOV_TOKEN != ''
9494
uses: codecov/codecov-action@v4
9595
with:

.github/workflows/module_acceptance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767

6868
env:
6969
BUNDLE_WITHOUT: release_prep
70-
PUPPET_GEM_VERSION: '~> 7.24'
70+
PUPPET_GEM_VERSION: '~> 8.9'
7171
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set?
7272

7373
steps:

.github/workflows/module_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
if: |
103103
inputs.run_shellcheck &&
104104
inputs.runs_on == 'ubuntu-latest' &&
105-
matrix.ruby_version == '3.2'
105+
matrix.ruby_version == '3.1'
106106
with:
107107
check_all_files_with_shebangs: "true"
108108

.github/workflows/module_release_prep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: "setup ruby"
4646
uses: "ruby/setup-ruby@v1"
4747
with:
48-
ruby-version: "3.2"
48+
ruby-version: "3.1"
4949
bundler-cache: "true"
5050
bundler: 2.4.22
5151

0 commit comments

Comments
 (0)