summaryrefslogtreecommitdiff
path: root/.github/workflows/func_spec.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/func_spec.yml')
-rw-r--r--.github/workflows/func_spec.yml19
1 files changed, 11 insertions, 8 deletions
diff --git a/.github/workflows/func_spec.yml b/.github/workflows/func_spec.yml
index 2247b414fd..3900bd1d00 100644
--- a/.github/workflows/func_spec.yml
+++ b/.github/workflows/func_spec.yml
@@ -14,27 +14,30 @@ jobs:
matrix:
os: [windows-2019, windows-2022]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- ruby: [2.7, '3.0']
+ ruby: ['3.1']
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- bundler-cache: true
- - run: bundle exec rspec spec/functional/resource/chocolatey_package_spec.rb
+ bundler-cache: false
+ - run: |
+ bundle install
+ bundle exec rspec spec/functional/resource/chocolatey_package_spec.rb
userdefaults:
strategy:
fail-fast: false
matrix:
- os: [macos-10.15, macos-11]
+ os: [macos-11, macos-12]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- ruby: [2.7, '3.0']
+ ruby: ['3.1']
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- bundler-cache: true
+ bundler-cache: false
+ - run: bundle install
- run: bundle exec rspec spec/functional/resource/macos_userdefaults_spec.rb