Skip to content

Commit c67f2d4

Browse files
committed
(CAT-2281) Remove puppet 7 infrastructure
Puppet 7 is EOL. Therefore, we can remove the test infrastructure for it. This commit runs PDK update as preparation work for the rest of the PR.
1 parent b11600c commit c67f2d4

File tree

9 files changed

+690
-38
lines changed

9 files changed

+690
-38
lines changed

.github/workflows/nightly.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,3 @@ jobs:
1414
needs: Spec
1515
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
1616
secrets: "inherit"
17-
18-
on-failure-workflow-restarter-proxy:
19-
# (1) run this job after the "acceptance" job and...
20-
needs: [Acceptance, Spec]
21-
# (2) continue ONLY IF "acceptance" fails
22-
if: always() && needs.Acceptance.result == 'failure' || needs.Spec.result == 'failure'
23-
runs-on: ubuntu-latest
24-
steps:
25-
# (3) checkout this repository in order to "see" the following custom action
26-
- name: Checkout repository
27-
uses: actions/checkout@v4
28-
29-
# (4) "use" the custom action to retrigger the failed "acceptance job" above
30-
- name: Trigger reusable workflow
31-
uses: "puppetlabs/cat-github-actions/.github/actions/workflow-restarter-proxy@main"
32-
env:
33-
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34-
with:
35-
repository: ${{ github.repository }}
36-
run_id: ${{ github.run_id }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
/spec/fixtures/modules/*
2020
/tmp/
2121
/vendor/
22+
/.vendor/
2223
/convert_report.txt
2324
/update_report.txt
2425
.DS_Store

.pdkignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
/spec/fixtures/modules/*
2020
/tmp/
2121
/vendor/
22+
/.vendor/
2223
/convert_report.txt
2324
/update_report.txt
2425
.DS_Store

.puppet-lint.rc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
--fail-on-warnings
12
--relative
3+
--no-80chars-check
4+
--no-140chars-check
5+
--no-class_inherits_from_params_class-check
6+
--no-autoloader_layout-check
7+
--no-documentation-check
8+
--no-single_quote_string_with_variables-check
9+
--ignore-paths=.vendor/**/*.pp,.bundle/**/*.pp,pkg/**/*.pp,spec/**/*.pp,tests/**/*.pp,types/**/*.pp,vendor/**/*.pp

0 commit comments

Comments
 (0)