Skip to content

Commit d0109f7

Browse files
committed
Puppet 8 support
1 parent 0ff39c6 commit d0109f7

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,19 @@ jobs:
1818
BUNDLE_WITH: "development"
1919
strategy:
2020
matrix:
21-
puppet: [7.0]
22-
ruby: [2.7]
21+
puppet:
22+
- '7.0'
23+
- '8.0'
24+
ruby:
25+
- '2.7'
26+
- '3.1'
27+
- '3.2'
28+
exclude:
29+
- ruby: '2.7'
30+
puppet: '8.0'
2331
steps:
2432
- name: Checkout Source
25-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
2634

2735
- name: Set up Ruby
2836
uses: ruby/setup-ruby@v1
@@ -49,7 +57,7 @@ jobs:
4957
5058
steps:
5159
- name: Checkout code
52-
uses: actions/checkout@v2
60+
uses: actions/checkout@v4
5361
with:
5462
ref: main
5563

@@ -76,7 +84,7 @@ jobs:
7684
7785
steps:
7886
- name: Checkout code
79-
uses: actions/checkout@v2
87+
uses: actions/checkout@v4
8088
with:
8189
ref: main
8290
- name: Get Version
@@ -108,7 +116,7 @@ jobs:
108116
(needs.tag.result == 'success')
109117
110118
steps:
111-
- uses: actions/checkout@v2
119+
- uses: actions/checkout@v4
112120
with:
113121
ref: main
114122
- name: Build and publish Puppet module

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"requirements": [
7575
{
7676
"name": "puppet",
77-
"version_requirement": ">= 7.0.0 < 8.0.0"
77+
"version_requirement": ">= 7.0.0 < 9.0.0"
7878
}
7979
],
8080
"tags": [
@@ -83,4 +83,4 @@
8383
"pdk-version": "3.0.0",
8484
"template-url": "pdk-default#3.0.0",
8585
"template-ref": "tags/3.0.0-0-g056e50d"
86-
}
86+
}

0 commit comments

Comments
 (0)