Skip to content

Commit 4645304

Browse files
authored
Merge pull request #58 from mhashizume/maint/main/auto-release-gha
(maint) Fix auto release action
2 parents 449dd71 + ca5186e commit 4645304

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/auto_release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ jobs:
3333
fetch-depth: 0
3434
persist-credentials: false
3535

36+
# We use the dev tools image here because the PDK image does not have the
37+
# build tools necessary to compile native extensions.
3638
- name: "PDK Release prep"
37-
uses: docker://puppet/pdk:2.6.1.0
39+
uses: docker://puppet/puppet-dev-tools:4.x
3840
with:
39-
args: 'release prep --force'
41+
args: 'pdk release prep --force --debug'
4042
env:
4143
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4244

.sync.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ Gemfile:
2121
from_env: BEAKER_PUPPET_VERSION
2222
version: '~> 1.22'
2323
- gem: github_changelog_generator
24-
version: '=1.15.2'
24+
version: '= 1.16.4'
25+
- gem: concurrent-ruby
26+
version: '= 1.1.10'
2527
# We can unpin async when we move to Ruby 3
2628
- gem: async
2729
version: '~> 1'

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ group :development do
4040
gem "beaker-hostgenerator"
4141
gem "beaker-rspec"
4242
gem "beaker-puppet", *location_for(ENV['BEAKER_PUPPET_VERSION'] || '~> 1.22')
43-
gem "github_changelog_generator", require: false
43+
gem "github_changelog_generator", '= 1.16.4', require: false
44+
gem "concurrent-ruby", '= 1.1.10', require: false
4445
gem "async", '~> 1', require: false
4546
gem "beaker-module_install_helper", require: false
4647
gem "beaker-puppet_install_helper", require: false

0 commit comments

Comments
 (0)