Skip to content

Commit 449dd71

Browse files
authored
Merge pull request #57 from mhashizume/maint/main/pdk-update
(maint) Follow up PDK updates
2 parents 11ca58e + 12cf397 commit 449dd71

File tree

8 files changed

+9
-4
lines changed

8 files changed

+9
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"settings": {
66
"terminal.integrated.profiles.linux": {
77
"bash": {
8-
"path": "bash",
8+
"path": "bash"
99
}
1010
}
1111
},

.github/workflows/auto_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
persist-credentials: false
3535

3636
- name: "PDK Release prep"
37-
uses: docker://puppet/iac_release:ci
37+
uses: docker://puppet/pdk:2.6.1.0
3838
with:
3939
args: 'release prep --force'
4040
env:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626
.envrc
2727
/inventory.yaml
2828
/spec/fixtures/litmus_inventory.yaml
29+
.rspec

.sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Gemfile:
2121
from_env: BEAKER_PUPPET_VERSION
2222
version: '~> 1.22'
2323
- gem: github_changelog_generator
24+
version: '=1.15.2'
2425
# We can unpin async when we move to Ruby 3
2526
- gem: async
2627
version: '~> 1'

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ end
4949
group :system_tests do
5050
gem "puppet_litmus", '< 1.0.0', require: false, platforms: [:ruby]
5151
gem "serverspec", '~> 2.41', require: false
52+
gem "voxpupuli-acceptance"
5253
end
5354

5455
puppet_version = ENV['PUPPET_GEM_VERSION']

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ require 'puppet-syntax/tasks/puppet-syntax'
77
require 'puppet_blacksmith/rake_tasks' if Bundler.rubygems.find_name('puppet-blacksmith').any?
88
require 'github_changelog_generator/task' if Bundler.rubygems.find_name('github_changelog_generator').any?
99
require 'puppet-strings/tasks' if Bundler.rubygems.find_name('puppet-strings').any?
10+
require 'voxpupuli/acceptance/rake'
1011

1112
def changelog_user
1213
return unless Rake.application.top_level_tasks.include? "changelog"

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
}
2323
],
2424
"pdk-version": "2.6.1",
25-
"template-url": "https://github.com/puppetlabs/pdk-templates#2.7.1",
26-
"template-ref": "tags/2.7.1-0-g9a16c87"
25+
"template-url": "https://github.com/puppetlabs/pdk-templates#main",
26+
"template-ref": "heads/main-0-g0bbd7f1"
2727
}

spec/spec_helper_acceptance.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require 'beaker-rspec'
22
require 'beaker/module_install_helper'
33
require 'beaker/puppet_install_helper'
4+
require 'voxpupuli/acceptance/spec_helper_acceptance'
45

56
$LOAD_PATH << File.join(__dir__, 'acceptance/lib')
67
require 'solaris_util'

0 commit comments

Comments
 (0)