From 29b3302e64d54c873e5fd8b1a57a020af7fd31d7 Mon Sep 17 00:00:00 2001
From: Tim Meusel <tim@bastelfreak.de>
Date: Mon, 3 Jun 2024 17:11:06 +0200
Subject: [PATCH] modulesync 8.0.0

---
 .github/workflows/ci.yml | 1 -
 .msync.yml               | 2 +-
 .overcommit.yml          | 8 +++++---
 .rspec                   | 5 -----
 .rspec_parallel          | 4 ----
 Gemfile                  | 4 ++--
 6 files changed, 8 insertions(+), 16 deletions(-)
 delete mode 100644 .rspec
 delete mode 100644 .rspec_parallel

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 60eba01..d758d05 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,5 +20,4 @@ jobs:
     name: Puppet
     uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
     with:
-      pidfile_workaround: 'false'
       additional_packages: 'libaugeas-dev augeas-tools'
diff --git a/.msync.yml b/.msync.yml
index ade23f9..011e730 100644
--- a/.msync.yml
+++ b/.msync.yml
@@ -2,4 +2,4 @@
 # Managed by modulesync - DO NOT EDIT
 # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
 
-modulesync_config_version: '7.5.0'
+modulesync_config_version: '8.0.0'
diff --git a/.overcommit.yml b/.overcommit.yml
index d367ada..4ed994c 100644
--- a/.overcommit.yml
+++ b/.overcommit.yml
@@ -43,10 +43,12 @@ PreCommit:
     enabled: true
     description: 'Runs rubocop on modified files only'
     command: ['bundle', 'exec', 'rubocop']
-  PuppetLint:
+  RakeTarget:
     enabled: true
-    description: 'Runs puppet-lint on modified files only'
-    command: ['bundle', 'exec', 'puppet-lint']
+    description: 'Runs lint on modified files only'
+    targets:
+      - 'lint'
+    command: ['bundle', 'exec', 'rake']
   YamlSyntax:
     enabled: true
   JsonSyntax:
diff --git a/.rspec b/.rspec
deleted file mode 100644
index f634583..0000000
--- a/.rspec
+++ /dev/null
@@ -1,5 +0,0 @@
-# Managed by modulesync - DO NOT EDIT
-# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
-
---format documentation
---color
diff --git a/.rspec_parallel b/.rspec_parallel
deleted file mode 100644
index a9a84f8..0000000
--- a/.rspec_parallel
+++ /dev/null
@@ -1,4 +0,0 @@
-# Managed by modulesync - DO NOT EDIT
-# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
-
---format progress
diff --git a/Gemfile b/Gemfile
index b61ba2a..0646c16 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,10 +4,10 @@
 source ENV['GEM_SOURCE'] || 'https://rubygems.org'
 
 group :test do
-  gem 'voxpupuli-test', '~> 7.0',   :require => false
+  gem 'voxpupuli-test', '~> 7.2',   :require => false
   gem 'coveralls',                  :require => false
   gem 'simplecov-console',          :require => false
-  gem 'puppet_metadata', '~> 3.5',  :require => false
+  gem 'puppet_metadata', '~> 4.0',  :require => false
   gem 'ruby-augeas',                :require => false
 end