Skip to content

Commit

Permalink
Update Gemfile to default to Puppet 8.
Browse files Browse the repository at this point in the history
Update Github workflow to default to actions/checkout@v4.
  • Loading branch information
bschonec committed May 20, 2024
1 parent b04915d commit c40e4c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down Expand Up @@ -125,3 +125,4 @@ jobs:
BEAKER_set: ${{ matrix.beakerset }}
BEAKER_PUPPET_COLLECTION: ${{ matrix.puppet }}
PUPPET_INSTALL_TYPE: agent

2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ else
gem 'facter', require: false, groups: [:test]
end

puppetversion = ENV['PUPPET_VERSION'].nil? ? '~> 4.0' : ENV['PUPPET_VERSION'].to_s
puppetversion = ENV['PUPPET_VERSION'].nil? ? '~> 8.0' : ENV['PUPPET_VERSION'].to_s
gem 'puppet', puppetversion, require: false, groups: [:test]

# vim:ft=ruby

0 comments on commit c40e4c5

Please sign in to comment.