Showing with 89 additions and 486 deletions.
  1. +1 −1 .devcontainer/devcontainer.json
  2. +2 −2 .fixtures.yml
  3. +0 −1 .github/workflows/auto_release.yml
  4. +0 −5 .github/workflows/nightly.yml
  5. +1 −2 .github/workflows/release.yml
  6. +6 −439 .rubocop.yml
  7. +34 −0 .rubocop_todo.yml
  8. +9 −4 CHANGELOG.md
  9. +23 −23 Gemfile
  10. +0 −1 Rakefile
  11. +5 −4 metadata.json
  12. 0 spec/init_spec.rb
  13. +3 −3 spec/spec_helper.rb
  14. +5 −1 tasks/init.rb
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"path": "bash"
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions .fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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'
symlinks:
"puppet_conf": "#{source_dir}"
"puppet_conf": "#{source_dir}"
1 change: 0 additions & 1 deletion .github/workflows/auto_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ on:

jobs:
release_prep:
name: "Release Prep"
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
secrets: "inherit"
5 changes: 0 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,9 @@ on:
jobs:
Spec:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
with:
runs_on: "ubuntu-20.04"
secrets: "inherit"

Acceptance:
needs: Spec
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
with:
runs_on: "ubuntu-20.04"
secrets: "inherit"

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"
Loading