Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: ruby
bundler-cache: true
- name: Run msync --noop
run: bundle exec msync update --noop --git-base=https://github.com/ --branch foobranch
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: ruby
bundler-cache: true
- name: Run msync --noop
run: bundle exec msync clone --git-base=https://github.com/
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: ruby
bundler-cache: true
- name: Run msync --noop
run: bundle exec msync clone --git-base=https://github.com/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
ruby-version: ruby
bundler-cache: true
- name: Add SSH key
run: |
Expand Down
2 changes: 1 addition & 1 deletion bin/outdated_modules_and_their_version
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ width_modules = 6
# min width is width of String "modulesync_config version"
width_version = 25
Dir.glob('modules/voxpupuli/puppet-*').sort.each do |f|
if File.exists?(f + '/.msync.yml')
if File.exist?(f + '/.msync.yml')
version_module = YAML.load_file(f + '/.msync.yml')['modulesync_config_version']
mod = (f).split('/')[2]
if version != version_module
Expand Down