Skip to content

(CONT-786) Add Support for Puppet 8 / Drop Support for Puppet 6 #633

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
93deda9
(MAINT) PDK Update
david22swan May 23, 2023
ccb7717
(CONT-786) Add Support for Puppet 8 / Drop Support for Puppet 6
david22swan May 23, 2023
4a3aee9
(CONT-786) Update Rubocop Versions
david22swan May 23, 2023
7b51060
(CONT-786) Rubocop Manual Fix 1 - Layout/LineLength
david22swan May 23, 2023
2f4ea50
(CONT-786) Rubocop Manual Fix 2 - Style/Documentation
david22swan May 23, 2023
5a2dab5
(CONT-786) Re-Pin puppet_agent
david22swan May 23, 2023
a7dfceb
(CONT-786) Rubocop Auto Fixes 1-5
david22swan May 24, 2023
dd20b6d
(CONT-786) Rubocop Auto Fixes 6-10
david22swan May 24, 2023
b4ebc35
(CONT-786) Rubocop Auto Fixes 11-15
david22swan May 24, 2023
6cd7cc5
(CONT-786) Rubocop Auto Fixes 16-20
david22swan May 24, 2023
903454c
(CONT-786) rubocop Auto Fixes 21-25
david22swan May 24, 2023
e975df1
(CONT-786) Rubocop Auto Fixes 26-30
david22swan May 24, 2023
c57d669
(CONT-786) Rubocop Auto Fixes 31-35
david22swan May 25, 2023
e6456c8
(CONT-786) Rubocop Auto Fixes 36-40
david22swan May 25, 2023
7be90be
(CONT-786) Rubocop Auto Fixes 41-45
david22swan May 25, 2023
cd0e938
(CONT-786) Rubocop Auto Fixes 46-50
david22swan May 25, 2023
736f36b
(CONT-786) Rubocop Auto Fixes 51-55
david22swan May 25, 2023
b50d002
(CONT-786) Rubocop Auto Fixs 56-58
david22swan May 26, 2023
301ef73
(CONT-786) Rubocop unsafe Auto Fixes 1-3
david22swan May 26, 2023
110883f
(CONT-786) Rubocop Unsafe Auto Fixes 4-6
david22swan May 26, 2023
5273ce0
(CONT-786) Rubocop Unsafe Auto Fixes 7-9
david22swan May 26, 2023
aa8cedb
(CONT-786) Rubocop Unsafe Auto Fixes 10-11
david22swan May 26, 2023
c3f7812
(CONT-786) Rubocop Manual Fix 3 - RSpec/RepeatedExampleGroupDescription
david22swan Jun 2, 2023
f456cbc
(CONT-786) Have Rubocop target correct ruby version
david22swan Jun 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fixtures:
facts: 'https://github.com/puppetlabs/puppetlabs-facts.git'
puppet_agent:
repo: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git'
ref: v4.12.1
ref: v4.13.0
provision: 'https://github.com/puppetlabs/provision.git'
yumrepo_core:
repo: https://github.com/puppetlabs/puppetlabs-yumrepo_core.git
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix: {'platform':['centos-7'],'collection':['puppet6-nightly', 'puppet7-nightly']}
matrix: {'platform':['centos-7'],'collection':['puppet7-nightly', 'puppet8-nightly']}

steps:
- name: Checkout Source
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix: {'platform':['centos-7'],'collection':['puppet6-nightly', 'puppet7-nightly']}
matrix: {'platform':['centos-7'],'collection':['puppet7-nightly', 'puppet8-nightly']}

steps:
- name: Checkout Source
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
workflow_dispatch:

jobs:
release:
name: "Release"
release:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
secrets: "inherit"
6 changes: 1 addition & 5 deletions .pdkignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,16 @@
.envrc
/inventory.yaml
/spec/fixtures/litmus_inventory.yaml
/appveyor.yml
/.editorconfig
/.fixtures.yml
/Gemfile
/.gitattributes
/.gitignore
/.gitlab-ci.yml
/.pdkignore
/.puppet-lint.rc
/Rakefile
/rakelib/
/.rspec
/.rubocop.yml
/.travis.yml
/..yml
/.yardopts
/spec/
/.vscode/
Expand Down
Loading