Skip to content

Commit c6a2017

Browse files
committed
limit inspec-core to non-licensed version for testing
Signed-off-by: Corey Hemminger <hemminger@hotmail.com>
1 parent 0608988 commit c6a2017

2 files changed

Lines changed: 26 additions & 22 deletions

File tree

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
with:
2929
ruby-version: ${{ matrix.ruby }}
3030
bundler-cache: true
31+
- name: Setup Machine
32+
run: |
33+
bundle add inspec-core --version ">= 5.22, < 6.6"
3134
- name: Create & Validate containers
3235
run: |
3336
bundle exec bundle exec kitchen create hello

.github/workflows/publish.yml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,26 @@ name: release-please
88
jobs:
99
release-please:
1010
runs-on: ubuntu-latest
11-
steps:
12-
- uses: googleapis/release-please-action@v4
13-
id: release
14-
with:
15-
token: ${{ secrets.PORTER_GITHUB_TOKEN }}
16-
17-
- name: Checkout
18-
uses: actions/checkout@v6
19-
if: ${{ steps.release.outputs.release_created }}
20-
21-
- name: Build and publish to GitHub Package
22-
uses: actionshub/publish-gem-to-github@main
23-
if: ${{ steps.release.outputs.release_created }}
24-
with:
25-
token: ${{ secrets.GITHUB_TOKEN }}
26-
owner: ${{ secrets.OWNER }}
27-
28-
- name: Build and publish to RubyGems
29-
uses: actionshub/publish-gem-to-rubygems@main
30-
if: ${{ steps.release.outputs.release_created }}
31-
with:
32-
token: ${{ secrets.RUBYGEMS_API_KEY }}
11+
# Commenting out since this is a chef fork version
12+
# steps:
13+
# - uses: googleapis/release-please-action@v4
14+
# id: release
15+
# with:
16+
# token: ${{ secrets.PORTER_GITHUB_TOKEN }}
17+
#
18+
# - name: Checkout
19+
# uses: actions/checkout@v6
20+
# if: ${{ steps.release.outputs.release_created }}
21+
#
22+
# - name: Build and publish to GitHub Package
23+
# uses: actionshub/publish-gem-to-github@main
24+
# if: ${{ steps.release.outputs.release_created }}
25+
# with:
26+
# token: ${{ secrets.GITHUB_TOKEN }}
27+
# owner: ${{ secrets.OWNER }}
28+
#
29+
# - name: Build and publish to RubyGems
30+
# uses: actionshub/publish-gem-to-rubygems@main
31+
# if: ${{ steps.release.outputs.release_created }}
32+
# with:
33+
# token: ${{ secrets.RUBYGEMS_API_KEY }}

0 commit comments

Comments
 (0)