Skip to content

Commit 9b89054

Browse files
pdksync - (maint) Running pdk update (#445)
* (maint) Running a pdk update to consume latest pdk-template changes * Add missing gem dependency "rspec-retry" * Fix identation * PDK update * fixing sync file and running pdk update Co-authored-by: daiana <[email protected]> Co-authored-by: daianamezdrea <[email protected]>
1 parent 3f879b6 commit 9b89054

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
ref: ${{ github.ref }}
3939
clean: true
4040
- name: "PDK Build"
41-
uses: docker://puppet/pdk:nightly
41+
uses: docker://puppet/pdk:2.1.0.0
4242
with:
4343
args: 'build'
4444
- name: "Push to Forge"
45-
uses: docker://puppet/pdk:nightly
45+
uses: docker://puppet/pdk:2.1.0.0
4646
with:
4747
args: 'release publish --forge-token ${{ secrets.FORGE_API_KEY }} --force'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
.project
2626
.envrc
2727
/inventory.yaml
28+
/spec/fixtures/litmus_inventory.yaml

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tasks:
66

77
vscode:
88
extensions:
9-
- puppet.puppet-vscode@1.0.0:oSzfTkDf6Cmc1jOjgW33VA==
9+
- puppet.puppet-vscode@1.2.0:f5iEPbmOj6FoFTOV6q8LTg==

.pdkignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
.project
2626
.envrc
2727
/inventory.yaml
28+
/spec/fixtures/litmus_inventory.yaml
2829
/appveyor.yml
2930
/.fixtures.yml
3031
/Gemfile

.sync.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
notifications:
2424
slack:
2525
secure: l/MKqMgGSmyUUVfGyJnNA23atn1komaEvl3GsFz3e4MJsmLW4eOqFbszrcbQafrT3WdClYUmv1GaJT1OJTsXfV5kHL5TUp2Q7R372mtYYlyP13b0AqyDoQX9DyrGpo6oA5NDvQG4ygL1wxEhoqHohAWyjusG9Z5/duiO57K6Ls0=
26-
2726
.gitpod.Dockerfile:
2827
unmanaged: false
2928
.gitpod.yml:
@@ -41,3 +40,9 @@
4140
unmanaged: false
4241
.travis.yml:
4342
delete: true
43+
Gemfile:
44+
optional:
45+
":development":
46+
- gem: rspec-retry
47+
version: '= 0.4.5'
48+
platforms: ruby

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ group :development do
2020
gem "json", '= 2.0.4', require: false if Gem::Requirement.create('~> 2.4.2').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
2121
gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
2222
gem "json", '= 2.3.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 2.8.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
23-
gem 'rspec-retry', '= 0.4.5', require: false, platforms: [:ruby]
2423
gem "puppet-module-posix-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]
2524
gem "puppet-module-posix-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]
2625
gem "puppet-module-win-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw]
2726
gem "puppet-module-win-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw]
27+
gem "rspec-retry", '= 0.4.5', require: false, platforms: [:ruby]
2828
end
2929
group :system_tests do
3030
gem "puppet-module-posix-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby]

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@
8484
}
8585
],
8686
"template-url": "https://github.com/puppetlabs/pdk-templates.git#main",
87-
"template-ref": "heads/main-0-g12a5dea",
88-
"pdk-version": "1.18.1"
87+
"template-ref": "heads/main-0-ge04486b",
88+
"pdk-version": "2.1.0"
8989
}

0 commit comments

Comments
 (0)